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