Enum Class AccessibleAttribute
- All Implemented Interfaces:
- Serializable,- Comparable<AccessibleAttribute>,- Constable
AccessibleRole dictates the set of attributes that
 the screen reader will request for a particular control.  For
 example, a slider is expected to return a double that represents
 the current value.
 Attributes may have any number of parameters, depending on the particular attribute.
 When the value of an attribute is changed by a node, it must notify the assistive technology
 using Node.notifyAccessibleAttributeChanged(AccessibleAttribute).  This will allow
 the screen reader to inform the user that a value has changed.  The most common form of
 notification is focus change.
 
- Since:
- JavaFX 8u40
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic enumThis enum describes the values forTOGGLE_STATEattribute.Nested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionReturns the accelerator for the node.Returns the bounds for the node, in screen coordinates.Returns the array of bounding rectangles for the given character range, in screen coordinates.Returns the caret offset for the node.Returns the cell at the given row and column indices.Returns the children for the node.Returns the column at the given index.Returns the column count for the node.Returns the column index for the node.Returns the contents of the node.Returns the local date for the node.Returns true if the node is disabled, otherwise false.Returns the depth of a row in the disclosure hierarchy.Returns true if the node is editable, otherwise false.Returns true if the node is expanded, otherwise false.Returns the focus item.Returns the focus node.Returns true if the node is focused, otherwise false.Returns the font for the node.Returns the header for the node.Returns the help text for the node.Returns the horizontal scroll bar for the node.Returns true of the node is indeterminaite, otherwise false.Returns the index for the node.Returns the item at the given index.Returns the item count for the node.Returns the node that is the label for this node.Returns true if the node is a leaf element, otherwise false.Returns the line end offset of the given line index.Returns the line index of the given character offset.Returns the line start offset of the given line index.Returns the maximum value for the node.Returns the minimum value for the node.Returns the mnemonic for the node.Returns true if the node allows for multiple selection, otherwise false.Returns the node at the given location.Returns the character offset at the given location.Returns the orientation of the node.Return the overflow button for the node.Returns the parent for the node.Returns the parent menu for the node.Returns the role for the node.Returns the role description for the node.Returns the row at the given index.Returns the row count for the node.Returns the row index of the node.Returns the scene for the node.Returns true if the node is selected, otherwise false.Returns the list of selected items for the node.Returns the text selection end offset for the node.Returns the text selection start offset for the node.Returns the sub menu for the node.Returns the text for the node.Returnstoggle stateof CheckBox of CheckBoxTreeItem.Returns a tree item at the given index, relative to its TREE_ITEM_PARENT.Returns the tree item count for the node, relative to its TREE_ITEM_PARENT.Returns the parent item for the item, or null if the item is the root.Returns the value for the node.Returns the value as string for the node.Returns the vertical scroll bar for the node.Returns true if node is visible, otherwise false.Returns true if the node has been visited, otherwise false.
- 
Method SummaryModifier and TypeMethodDescriptionClass<?> Gets the type ofAccessibleAttribute.static AccessibleAttributeReturns the enum constant of this class with the specified name.static AccessibleAttribute[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
ACCELERATORReturns the accelerator for the node.- Used by: Menu, MenuItem, RadioMenuItem, and others
- Needs notify: no
- Return Type: KeyCombination
- Parameters:
 
- 
BOUNDSReturns the bounds for the node, in screen coordinates.- Used by: Node
- Needs notify: no
- Return Type: Boundsin screen coordinates
- Parameters:
 
- 
BOUNDS_FOR_RANGE
- 
CARET_OFFSETReturns the caret offset for the node.- Used by: TextField and TextArea
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
CHILDRENReturns the children for the node.- Used by: Parent
- Needs notify: no
- Return Type: ObservableList<Node>
- Parameters:
 
- 
COLUMN_AT_INDEX
- 
CELL_AT_ROW_COLUMN
- 
COLUMN_COUNTReturns the column count for the node.- Used by: TableView and TreeTableView
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
COLUMN_INDEXReturns the column index for the node.- Used by: TableCell and TreeTableCell
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
CONTENTSReturns the contents of the node.- Used by: ScrollPane
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
DISABLEDReturns true if the node is disabled, otherwise false.- Used by: Node
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
- 
DISCLOSURE_LEVELReturns the depth of a row in the disclosure hierarchy.- Used by: TreeItem and TreeTableRow
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
DATEReturns the local date for the node.- Used by: DatePicker
- Needs notify: no
- Return Type: LocalDate
- Parameters:
 
- 
EDITABLEReturns true if the node is editable, otherwise false.- Used by: TextField, ComboBox, and others
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
- 
EXPANDEDReturns true if the node is expanded, otherwise false.- Used by: TreeItem, TitledPane, and others
- Needs notify: yes
- Return Type: Boolean
- Parameters:
 
- 
FOCUS_ITEMReturns the focus item.Used for controls such as TabPane, TableView, ListView where the assistive technology focus is different from the normal focus node. For example, a table control will have focus, while a cell inside the table might have the screen reader focus. - Used by: ListView, TabPane, and others
- Needs notify: yes
- Return Type: Node
- Parameters:
 
- 
FOCUS_NODEReturns the focus node. Type: NodeWhen this attribute is requested from the Scene, the default implementation returns Scene.focusOwnerProperty().- Used by: Scene
- Needs notify: yes
- Return Type: Node
- Parameters:
 
- 
FOCUSEDReturns true if the node is focused, otherwise false.- Used by: Node
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
- 
FONTReturns the font for the node.- Used by: TextField and TextArea
- Needs notify: no
- Return Type: Font
- Parameters:
 
- 
HEADERReturns the header for the node.- Used by: TableView and TreeTableView
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
HELPReturns the help text for the node.- Used by: Node
- Needs notify: no
- Return Type: String
- Parameters:
 
- 
HORIZONTAL_SCROLLBARReturns the horizontal scroll bar for the node.- Used by: ListView, ScrollPane, and others
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
INDETERMINATEReturns true of the node is indeterminaite, otherwise false.- Used by: CheckBox and ProgressIndicator
- Needs notify: yes
- Return Type: Boolean
- Parameters:
 
- 
TOGGLE_STATEReturnstoggle stateof CheckBox of CheckBoxTreeItem.- Used by: CheckBoxTreeItem
- Needs notify: yes
- Return Type: AccessibleAttribute.ToggleState- ToggleState.UNCHECKED: control is not selected
- ToggleState.CHECKED: control is selected
- ToggleState.INDETERMINATE: selection state of control cannot be determined
 
- Parameters:
 - Since:
- 21
- See Also:
 
- 
ITEM_AT_INDEX
- 
ITEM_COUNTReturns the item count for the node.- Used by: TabPane, ListView, and others
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
INDEXReturns the index for the node.- Used by: ListItem, TableRow, and others
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
LABELED_BY
- 
LEAFReturns true if the node is a leaf element, otherwise false.- Used by: TreeItem and TreeTableRow
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
- 
LINE_END
- 
LINE_FOR_OFFSET
- 
LINE_START
- 
MIN_VALUEReturns the minimum value for the node.- Used by: Slider, ScrollBar, and others
- Needs notify: no
- Return Type: Double
- Parameters:
 
- 
MAX_VALUEReturns the maximum value for the node.- Used by: Slider, ScrollBar, and others
- Needs notify: no
- Return Type: Double
- Parameters:
 
- 
MNEMONICReturns the mnemonic for the node.- Used by: Menu, MenuItem, CheckMenuItem, and others
- Needs notify: no
- Return Type: String
- Parameters:
 
- 
MULTIPLE_SELECTIONReturns true if the node allows for multiple selection, otherwise false.- Used by: ListView, TableView, and others
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
- 
NODE_AT_POINT
- 
OFFSET_AT_POINT
- 
ORIENTATIONReturns the orientation of the node.- Used by: ScrolBar and Slider
- Needs notify: no
- Return Type: Orientation
- Parameters:
 
- 
OVERFLOW_BUTTONReturn the overflow button for the node.- Used by: Toolbar
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
PARENTReturns the parent for the node.- Used by: Node
- Needs notify: yes
- Return Type: Parent
- Parameters:
 
- 
PARENT_MENUReturns the parent menu for the node.- Used by: ContextMenu
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
ROLEReturns the role for the node.- Used by: Node
- Needs notify: no
- Return Type: AccessibleRole
- Parameters:
 
- 
ROLE_DESCRIPTIONReturns the role description for the node.- Used by: Node
- Needs notify: no
- Return Type: String
- Parameters:
 
- 
ROW_AT_INDEX
- 
ROW_COUNTReturns the row count for the node.- Used by: TableView, TreeView, and TreeTableView
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
ROW_INDEXReturns the row index of the node.- Used by: TableCell, TreeItem, and TreeTableCell
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
SCENEReturns the scene for the node.- Used by: Node
- Needs notify: no
- Return Type: Scene
- Parameters:
 
- 
SELECTEDReturns true if the node is selected, otherwise false.- Used by: CheckBox, TreeItem, and others
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
- 
SELECTED_ITEMSReturns the list of selected items for the node.- Used by: ListView, TableView, and others
- Needs notify: no
- Return Type: ObservableList<Node>
- Parameters:
 
- 
SELECTION_ENDReturns the text selection end offset for the node. Selection end corresponds to the larger position in the selection range.- Used by: TextField and TextArea
- Needs notify: yes
- Return Type: Integer
- Parameters:
 
- 
SELECTION_STARTReturns the text selection start offset for the node. Selection start corresponds to the smaller position in the selection range.- Used by: TextField and TextArea
- Needs notify: yes
- Return Type: Integer
- Parameters:
 
- 
SUBMENUReturns the sub menu for the node.- Used by: Menu
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
TEXTReturns the text for the node. E.g.- ComboBox returns a string representation of the current selected item.
- TextField returns the contents of the text field.
 - Used by: Node
- Needs notify: yes
- Return Type: String
- Parameters:
 
- 
TREE_ITEM_AT_INDEX
- 
TREE_ITEM_COUNTReturns the tree item count for the node, relative to its TREE_ITEM_PARENT.- Used by: TreeItem and TreeTableRow
- Needs notify: no
- Return Type: Integer
- Parameters:
 
- 
TREE_ITEM_PARENTReturns the parent item for the item, or null if the item is the root.- Used by: TreeItem and TreeTableRow
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
VALUEReturns the value for the node.- Used by: Slider, ScrollBar, Thumb, and others
- Needs notify: yes
- Return Type: Double
- Parameters:
 
- 
VALUE_STRINGReturns the value as string for the node.- Used by: Spinner
- Needs notify: yes
- Return Type: String
- Parameters:
 - Since:
- 22
 
- 
VERTICAL_SCROLLBARReturns the vertical scroll bar for the node.- Used by: ListView, ScrollPane, and others
- Needs notify: no
- Return Type: Node
- Parameters:
 
- 
VISIBLEReturns true if node is visible, otherwise false.- Used by: Node and ContextMenu
- Needs notify: yes
- Return Type: Boolean
- Parameters:
 
- 
VISITEDReturns true if the node has been visited, otherwise false.- Used by: Hyperlink
- Needs notify: no
- Return Type: Boolean
- Parameters:
 
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getReturnTypeGets the type ofAccessibleAttribute.- Returns:
- the type of AccessibleAttribute
 
 
-