Package com.batch.android.query.response
Enum AttributesCheckResponse.Action
- java.lang.Object
-
- java.lang.Enum<AttributesCheckResponse.Action>
-
- com.batch.android.query.response.AttributesCheckResponse.Action
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AttributesCheckResponse.Action>
- Enclosing class:
- AttributesCheckResponse
public static enum AttributesCheckResponse.Action extends java.lang.Enum<AttributesCheckResponse.Action>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributesCheckResponse.ActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AttributesCheckResponse.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OK
public static final AttributesCheckResponse.Action OK
-
BUMP
public static final AttributesCheckResponse.Action BUMP
-
RECHECK
public static final AttributesCheckResponse.Action RECHECK
-
RESEND
public static final AttributesCheckResponse.Action RESEND
-
UNKNOWN
public static final AttributesCheckResponse.Action UNKNOWN
-
-
Method Detail
-
values
public static AttributesCheckResponse.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AttributesCheckResponse.Action c : AttributesCheckResponse.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributesCheckResponse.Action valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-