public enum ReversalReasonEnumeration extends Enum<ReversalReasonEnumeration>
Java class for ReversalReasonEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReversalReasonEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CustCancel"/>
<enumeration value="MerchantCancel"/>
<enumeration value="Malfunction"/>
<enumeration value="Unable2Compl"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUST_CANCEL
Customer cancellation
|
MALFUNCTION
Suspected malfunction
|
MERCHANT_CANCEL
Cashier cancellation
|
UNABLE_2_COMPL
Card acceptor device unable to complete transaction
|
| Modifier and Type | Method and Description |
|---|---|
static ReversalReasonEnumeration |
fromValue(String v) |
String |
value() |
static ReversalReasonEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReversalReasonEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReversalReasonEnumeration CUST_CANCEL
public static final ReversalReasonEnumeration MERCHANT_CANCEL
public static final ReversalReasonEnumeration MALFUNCTION
public static final ReversalReasonEnumeration UNABLE_2_COMPL
public static ReversalReasonEnumeration[] values()
for (ReversalReasonEnumeration c : ReversalReasonEnumeration.values()) System.out.println(c);
public static ReversalReasonEnumeration 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 nullpublic String value()
public static ReversalReasonEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.