public static enum StreamingEvent.EventType extends java.lang.Enum<StreamingEvent.EventType>
| Enum Constant and Description |
|---|
Cancel |
Expired |
KeepAlive |
Set |
Update |
| Modifier and Type | Method and Description |
|---|---|
static StreamingEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StreamingEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamingEvent.EventType Set
public static final StreamingEvent.EventType Update
public static final StreamingEvent.EventType KeepAlive
public static final StreamingEvent.EventType Cancel
public static final StreamingEvent.EventType Expired
public static StreamingEvent.EventType[] values()
for (StreamingEvent.EventType c : StreamingEvent.EventType.values()) System.out.println(c);
public static StreamingEvent.EventType 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