private static enum LookaheadTouchFilter.FilterState extends java.lang.Enum<LookaheadTouchFilter.FilterState>
Enum Constant and Description |
---|
CLEAN
No events processed yet
|
PENDING_MODIFIABLE
previousState contains an event that we are allowed to change before
sending.
|
PENDING_UNMODIFIABLE
previousState contains an event that must be sent as is.
|
Modifier and Type | Method and Description |
---|---|
static LookaheadTouchFilter.FilterState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LookaheadTouchFilter.FilterState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookaheadTouchFilter.FilterState CLEAN
public static final LookaheadTouchFilter.FilterState PENDING_UNMODIFIABLE
public static final LookaheadTouchFilter.FilterState PENDING_MODIFIABLE
public static LookaheadTouchFilter.FilterState[] values()
for (LookaheadTouchFilter.FilterState c : LookaheadTouchFilter.FilterState.values()) System.out.println(c);
public static LookaheadTouchFilter.FilterState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null