public static enum AccessibleAttribute.ToggleState extends java.lang.Enum<AccessibleAttribute.ToggleState>
TOGGLE_STATE attribute.| Enum Constant and Description |
|---|
CHECKED
Indicates that the toggle control is selected.
|
INDETERMINATE
Indicates that the toggle state of the control cannot be determined.
|
UNCHECKED
Indicates that the toggle control is not selected.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessibleAttribute.ToggleState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessibleAttribute.ToggleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessibleAttribute.ToggleState UNCHECKED
public static final AccessibleAttribute.ToggleState CHECKED
public static final AccessibleAttribute.ToggleState INDETERMINATE
public static AccessibleAttribute.ToggleState[] values()
for (AccessibleAttribute.ToggleState c : AccessibleAttribute.ToggleState.values()) System.out.println(c);
public static AccessibleAttribute.ToggleState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullSubmit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.