public static enum FilterLifecycleEvent.EventType extends Enum<FilterLifecycleEvent.EventType>
Enum Constant and Description |
---|
FINISHED
The filtering process has finished.
|
STARTED
The filtering process has started.
|
Modifier and Type | Method and Description |
---|---|
static FilterLifecycleEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterLifecycleEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterLifecycleEvent.EventType STARTED
public static final FilterLifecycleEvent.EventType FINISHED
public static FilterLifecycleEvent.EventType[] values()
for (FilterLifecycleEvent.EventType c : FilterLifecycleEvent.EventType.values()) System.out.println(c);
public static FilterLifecycleEvent.EventType 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.