public enum FilterEvent extends Enum<FilterEvent>
| Enum Constant and Description |
|---|
EXPAND_SOURCE_CHILD
Describes the action of expanding a source or child.
|
EXPAND_TARGET_PARENT
Describes the action of expanding a target or parent.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterEvent EXPAND_SOURCE_CHILD
public static final FilterEvent EXPAND_TARGET_PARENT
public static FilterEvent[] values()
for (FilterEvent c : FilterEvent.values()) System.out.println(c);
public static FilterEvent 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