public enum CCTxnTypeEnum extends Enum<CCTxnTypeEnum>
Java class for CCTxnTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CCTxnTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Authorization"/> <enumeration value="Capture"/> <enumeration value="Charge"/> <enumeration value="Refund"/> <enumeration value="VoiceAuthorization"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AUTHORIZATION |
CAPTURE |
CHARGE |
REFUND |
VOICE_AUTHORIZATION |
Modifier and Type | Method and Description |
---|---|
static CCTxnTypeEnum |
fromValue(String v) |
String |
value() |
static CCTxnTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CCTxnTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CCTxnTypeEnum AUTHORIZATION
public static final CCTxnTypeEnum CAPTURE
public static final CCTxnTypeEnum CHARGE
public static final CCTxnTypeEnum REFUND
public static final CCTxnTypeEnum VOICE_AUTHORIZATION
public static CCTxnTypeEnum[] values()
for (CCTxnTypeEnum c : CCTxnTypeEnum.values()) System.out.println(c);
public static CCTxnTypeEnum 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 CCTxnTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.