public static enum IDecoder.Step.Result extends java.lang.Enum<IDecoder.Step.Result>
Modifier and Type | Field and Description |
---|---|
private int |
code |
Modifier and Type | Method and Description |
---|---|
static IDecoder.Step.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IDecoder.Step.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDecoder.Step.Result MORE_DATA
public static final IDecoder.Step.Result DECODED
public static final IDecoder.Step.Result ERROR
public static IDecoder.Step.Result[] values()
for (IDecoder.Step.Result c : IDecoder.Step.Result.values()) System.out.println(c);
public static IDecoder.Step.Result 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