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