public static enum OrderCompletionResult.OrderCompletionStatus extends Enum<OrderCompletionResult.OrderCompletionStatus>
| Enum Constant and Description |
|---|
FAILED |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static OrderCompletionResult.OrderCompletionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderCompletionResult.OrderCompletionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderCompletionResult.OrderCompletionStatus SUCCESSFUL
public static final OrderCompletionResult.OrderCompletionStatus FAILED
public static OrderCompletionResult.OrderCompletionStatus[] values()
for (OrderCompletionResult.OrderCompletionStatus c : OrderCompletionResult.OrderCompletionStatus.values()) System.out.println(c);
public static OrderCompletionResult.OrderCompletionStatus 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 © 2014 Pivotal Software, Inc.. All rights reserved.