public enum CharacterOut extends java.lang.Enum<CharacterOut>
Enum Constant and Description |
---|
LOCKED |
NORANGE |
NOTARGET |
NOTREADY |
SUCCESS |
UNABLE |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
boolean |
isSuccess() |
java.lang.String |
toString() |
static CharacterOut |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CharacterOut[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterOut SUCCESS
public static final CharacterOut NORANGE
public static final CharacterOut NOTARGET
public static final CharacterOut NOTREADY
public static final CharacterOut UNABLE
public static final CharacterOut LOCKED
public static final CharacterOut UNKNOWN
public static CharacterOut[] values()
for (CharacterOut c : CharacterOut.values()) System.out.println(c);
public static CharacterOut 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 java.lang.String toString()
toString
in class java.lang.Enum<CharacterOut>
public boolean isSuccess()