public enum SseEventType extends Enum<SseEventType>
Modifier and Type | Method and Description |
---|---|
static SseEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SseEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SseEventType EOS
public static final SseEventType EMPTY
public static final SseEventType DATA
public static SseEventType[] values()
for (SseEventType c : SseEventType.values()) System.out.println(c);
public static SseEventType 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 © 2014. All Rights Reserved.