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