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