public enum FSSubState extends java.lang.Enum<FSSubState> implements BaseEnum
Enum Constant and Description |
---|
INVALID |
REF |
SUBSCRIBED |
UNSUBSCRIBED |
Modifier and Type | Method and Description |
---|---|
static FSSubState |
getEnum(byte[] data) |
byte[] |
getID() |
FSSubState |
getRefEnum(byte[] data) |
java.lang.String |
toString() |
static FSSubState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FSSubState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FSSubState REF
public static final FSSubState UNSUBSCRIBED
public static final FSSubState SUBSCRIBED
public static final FSSubState INVALID
public static FSSubState[] values()
for (FSSubState c : FSSubState.values()) System.out.println(c);
public static FSSubState 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 static FSSubState getEnum(byte[] data)
public FSSubState getRefEnum(byte[] data)
getRefEnum
in interface BaseEnum
public java.lang.String toString()
toString
in class java.lang.Enum<FSSubState>