public enum IncomingEventState extends Enum<IncomingEventState>
| Enum Constant and Description |
|---|
CREATED
The event has been created but has not yet been distributed
to all topic listeners.
|
DISTRIBUTED_TO_ALL_TOPIC_LISTENERS
The event has been distributed to all topic listeners.
|
| Modifier and Type | Method and Description |
|---|---|
static IncomingEventState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncomingEventState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncomingEventState CREATED
public static final IncomingEventState DISTRIBUTED_TO_ALL_TOPIC_LISTENERS
public static IncomingEventState[] values()
for (IncomingEventState c : IncomingEventState.values()) System.out.println(c);
public static IncomingEventState 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 © 2018–2019 ODPi. All rights reserved.