public enum AutomationElementMode extends Enum<AutomationElementMode>
| Enum Constant and Description |
|---|
AutomationElementMode_Full
The value of this constant is 1
|
AutomationElementMode_None
The value of this constant is 0
|
| Modifier and Type | Method and Description |
|---|---|
static AutomationElementMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutomationElementMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutomationElementMode AutomationElementMode_None
The value of this constant is 0
public static final AutomationElementMode AutomationElementMode_Full
The value of this constant is 1
public static AutomationElementMode[] values()
for (AutomationElementMode c : AutomationElementMode.values()) System.out.println(c);
public static AutomationElementMode 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 © 2016. All rights reserved.