public enum OutputLimitSelector extends Enum<OutputLimitSelector>
Enum Constant and Description |
---|
ALL
Output all events of last interval.
|
DEFAULT
Output all events of last interval.
|
FIRST
Output first event of last interval.
|
LAST
Output last event of last interval.
|
SNAPSHOT
Output all events as a snapshot considering the current state regardless of interval.
|
Modifier and Type | Method and Description |
---|---|
String |
getText()
Returns the text for the selector.
|
static OutputLimitSelector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputLimitSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputLimitSelector FIRST
public static final OutputLimitSelector LAST
public static final OutputLimitSelector ALL
public static final OutputLimitSelector DEFAULT
public static final OutputLimitSelector SNAPSHOT
public static OutputLimitSelector[] values()
for (OutputLimitSelector c : OutputLimitSelector.values()) System.out.println(c);
public static OutputLimitSelector 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 nullpublic String getText()