public static enum Authorization.StatusEnum extends Enum<Authorization.StatusEnum>
| Enum Constant and Description |
|---|
PendingCapture |
| Modifier and Type | Method and Description |
|---|---|
static Authorization.StatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Authorization.StatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Authorization.StatusEnum PendingCapture
public static Authorization.StatusEnum[] values()
for (Authorization.StatusEnum c : Authorization.StatusEnum.values()) System.out.println(c);
public static Authorization.StatusEnum 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 © 2016. All Rights Reserved.