public enum EventHolder extends Enum<EventHolder>
| Enum Constant and Description |
|---|
AGGREGATION |
INMEMORYTABLE |
STREAM |
TABLE |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static EventHolder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventHolder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventHolder STREAM
public static final EventHolder INMEMORYTABLE
public static final EventHolder TABLE
public static final EventHolder WINDOW
public static final EventHolder AGGREGATION
public static EventHolder[] values()
for (EventHolder c : EventHolder.values()) System.out.println(c);
public static EventHolder 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 © 2019 WSO2. All rights reserved.