public enum PreviousExpressionType extends Enum<PreviousExpressionType>
Enum Constant and Description |
---|
PREV
Returns a previous event with the index counting from the last event towards the first event.
|
PREVCOUNT
Returns the count of previous events.
|
PREVTAIL
Returns a previous event with the index counting from the first event towards the last event.
|
PREVWINDOW
Returns all previous events.
|
Modifier and Type | Method and Description |
---|---|
static PreviousExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreviousExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreviousExpressionType PREV
public static final PreviousExpressionType PREVCOUNT
public static final PreviousExpressionType PREVTAIL
public static final PreviousExpressionType PREVWINDOW
public static PreviousExpressionType[] values()
for (PreviousExpressionType c : PreviousExpressionType.values()) System.out.println(c);
public static PreviousExpressionType 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