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