Package net.authorize.api.contract.v1
Enum MerchantInitTransReasonEnum
- java.lang.Object
-
- java.lang.Enum<MerchantInitTransReasonEnum>
-
- net.authorize.api.contract.v1.MerchantInitTransReasonEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MerchantInitTransReasonEnum>
public enum MerchantInitTransReasonEnum extends Enum<MerchantInitTransReasonEnum>
Java class for merchantInitTransReasonEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="merchantInitTransReasonEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="resubmission"/> <enumeration value="delayedCharge"/> <enumeration value="reauthorization"/> <enumeration value="noShow"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELAYED_CHARGENO_SHOWREAUTHORIZATIONRESUBMISSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MerchantInitTransReasonEnumfromValue(String v)Stringvalue()static MerchantInitTransReasonEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MerchantInitTransReasonEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESUBMISSION
public static final MerchantInitTransReasonEnum RESUBMISSION
-
DELAYED_CHARGE
public static final MerchantInitTransReasonEnum DELAYED_CHARGE
-
REAUTHORIZATION
public static final MerchantInitTransReasonEnum REAUTHORIZATION
-
NO_SHOW
public static final MerchantInitTransReasonEnum NO_SHOW
-
-
Method Detail
-
values
public static MerchantInitTransReasonEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MerchantInitTransReasonEnum c : MerchantInitTransReasonEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MerchantInitTransReasonEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static MerchantInitTransReasonEnum fromValue(String v)
-
-