public static enum Batch.BatchStatus extends Enum<Batch.BatchStatus>
| Enum Constant and Description |
|---|
INVALID |
PURCHASED |
PURCHASING |
VALID |
VALIDATING |
| Modifier and Type | Method and Description |
|---|---|
static Batch.BatchStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Batch.BatchStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Batch.BatchStatus VALIDATING
public static final Batch.BatchStatus VALID
public static final Batch.BatchStatus INVALID
public static final Batch.BatchStatus PURCHASING
public static final Batch.BatchStatus PURCHASED
public static Batch.BatchStatus[] values()
for (Batch.BatchStatus c : Batch.BatchStatus.values()) System.out.println(c);
public static Batch.BatchStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 Shippo. All rights reserved.