public enum SystemDataType extends Enum<SystemDataType>
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue() |
static SystemDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemDataType MAILBOX
public static final SystemDataType MESSAGE
public static final SystemDataType PROXY
public static final SystemDataType RPC
public static SystemDataType[] values()
for (SystemDataType c : SystemDataType.values()) System.out.println(c);
public static SystemDataType 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 byte getValue()