public static enum Decode.RETURN extends java.lang.Enum<Decode.RETURN>
Enum Constant and Description |
---|
CONTINUE |
END_OF_FILE |
MESG |
MESG_DEF |
Modifier and Type | Method and Description |
---|---|
static Decode.RETURN |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Decode.RETURN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Decode.RETURN CONTINUE
public static final Decode.RETURN MESG
public static final Decode.RETURN MESG_DEF
public static final Decode.RETURN END_OF_FILE
public static Decode.RETURN[] values()
for (Decode.RETURN c : Decode.RETURN.values()) System.out.println(c);
public static Decode.RETURN 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 null