public static enum BatchShipment.Status extends Enum<BatchShipment.Status>
| Enum Constant and Description |
|---|
INCOMPLETE |
INVALID |
TRANSACTION_FAILED |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static BatchShipment.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BatchShipment.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchShipment.Status INVALID
public static final BatchShipment.Status VALID
public static final BatchShipment.Status INCOMPLETE
public static final BatchShipment.Status TRANSACTION_FAILED
public static BatchShipment.Status[] values()
for (BatchShipment.Status c : BatchShipment.Status.values()) System.out.println(c);
public static BatchShipment.Status 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.