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