public enum AXValueType extends Enum<AXValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
BOOLEAN_OR_UNDEFINED |
COMPUTED_STRING |
DOM_RELATION |
IDREF |
IDREF_LIST |
INTEGER |
INTERNAL_ROLE |
NODE |
NODE_LIST |
NUMBER |
ROLE |
STRING |
TOKEN |
TOKEN_LIST |
TRISTATE |
VALUE_UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static AXValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AXValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AXValueType BOOLEAN
public static final AXValueType TRISTATE
public static final AXValueType BOOLEAN_OR_UNDEFINED
public static final AXValueType IDREF
public static final AXValueType IDREF_LIST
public static final AXValueType INTEGER
public static final AXValueType NODE
public static final AXValueType NODE_LIST
public static final AXValueType NUMBER
public static final AXValueType STRING
public static final AXValueType COMPUTED_STRING
public static final AXValueType TOKEN
public static final AXValueType TOKEN_LIST
public static final AXValueType DOM_RELATION
public static final AXValueType ROLE
public static final AXValueType INTERNAL_ROLE
public static final AXValueType VALUE_UNDEFINED
public static AXValueType[] values()
for (AXValueType c : AXValueType.values()) System.out.println(c);
public static AXValueType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.