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