public static enum ManifestService.MSG_TYPE extends Enum<ManifestService.MSG_TYPE>
| Enum Constant | Description |
|---|---|
ADD_SEGMENT |
|
SHUTDOWN |
|
STOP_STREAM |
| Modifier and Type | Method | Description |
|---|---|---|
static ManifestService.MSG_TYPE |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ManifestService.MSG_TYPE[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManifestService.MSG_TYPE ADD_SEGMENT
public static final ManifestService.MSG_TYPE SHUTDOWN
public static final ManifestService.MSG_TYPE STOP_STREAM
public static ManifestService.MSG_TYPE 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 nullpublic static ManifestService.MSG_TYPE[] values()
for (ManifestService.MSG_TYPE c : ManifestService.MSG_TYPE.values()) System.out.println(c);