public enum GoalType extends Enum<GoalType>
Enum Constant and Description |
---|
matching |
select_by_property |
select_discordant |
selection |
tap_goal |
tap_hidden_elements |
tap_highlighted_elements |
tap_moving_elements |
Modifier and Type | Method and Description |
---|---|
static GoalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoalType selection
public static final GoalType select_discordant
public static final GoalType select_by_property
public static final GoalType matching
public static final GoalType tap_goal
public static final GoalType tap_highlighted_elements
public static final GoalType tap_moving_elements
public static final GoalType tap_hidden_elements
public static GoalType[] values()
for (GoalType c : GoalType.values()) System.out.println(c);
public static GoalType 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 null