public static enum InternalNotification.ArgType extends java.lang.Enum<InternalNotification.ArgType>
| Enum Constant and Description |
|---|
BYTE_ARRAY |
LIST |
STRING |
USER_DEFINED_ARGS |
| Modifier and Type | Method and Description |
|---|---|
static InternalNotification.ArgType |
getFromId(int id) |
int |
getId() |
java.lang.String |
getName() |
static InternalNotification.ArgType |
parseName(java.lang.String name) |
static InternalNotification.ArgType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InternalNotification.ArgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalNotification.ArgType STRING
public static final InternalNotification.ArgType BYTE_ARRAY
public static final InternalNotification.ArgType LIST
public static final InternalNotification.ArgType USER_DEFINED_ARGS
public static InternalNotification.ArgType[] values()
for (InternalNotification.ArgType c : InternalNotification.ArgType.values()) System.out.println(c);
public static InternalNotification.ArgType 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 nullpublic int getId()
public java.lang.String getName()
public static InternalNotification.ArgType getFromId(int id)
public static InternalNotification.ArgType parseName(java.lang.String name)