public enum AvsStatus extends Enum<AvsStatus>
| Enum Constant and Description |
|---|
INVALID |
MATCHED |
NO_RESULT |
NOT_MATCHED |
NOT_SUPPORTED |
PARTIAL_MATCH |
SYSTEM_UNAVAILABLE |
UNRECOGNIZED_RESULT |
| Modifier and Type | Method and Description |
|---|---|
static AvsStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AvsStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AvsStatus PARTIAL_MATCH
public static final AvsStatus MATCHED
public static final AvsStatus NOT_MATCHED
public static final AvsStatus NOT_SUPPORTED
public static final AvsStatus INVALID
public static final AvsStatus NO_RESULT
public static final AvsStatus UNRECOGNIZED_RESULT
public static final AvsStatus SYSTEM_UNAVAILABLE
public static AvsStatus[] values()
for (AvsStatus c : AvsStatus.values()) System.out.println(c);
public static AvsStatus 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 SAP SE. All Rights Reserved.