Package com.onslip360
Enum API.CardReceiptMetadata.VerificationMethod
- java.lang.Object
-
- java.lang.Enum<API.CardReceiptMetadata.VerificationMethod>
-
- com.onslip360.API.CardReceiptMetadata.VerificationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<API.CardReceiptMetadata.VerificationMethod>
- Enclosing class:
- API.CardReceiptMetadata
public static enum API.CardReceiptMetadata.VerificationMethod extends Enum<API.CardReceiptMetadata.VerificationMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
CVM_FAILED
CVM_NOT_PERFORMED
CVM_NOT_REQUIRED
NONE
OFFLINE_PIN
OFFLINE_PIN_AND_SIGNATURE
ONLINE_PIN
SIGNATURE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.CardReceiptMetadata.VerificationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.CardReceiptMetadata.VerificationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final API.CardReceiptMetadata.VerificationMethod NONE
-
SIGNATURE
public static final API.CardReceiptMetadata.VerificationMethod SIGNATURE
-
ONLINE_PIN
public static final API.CardReceiptMetadata.VerificationMethod ONLINE_PIN
-
OFFLINE_PIN
public static final API.CardReceiptMetadata.VerificationMethod OFFLINE_PIN
-
OFFLINE_PIN_AND_SIGNATURE
public static final API.CardReceiptMetadata.VerificationMethod OFFLINE_PIN_AND_SIGNATURE
-
CVM_NOT_REQUIRED
public static final API.CardReceiptMetadata.VerificationMethod CVM_NOT_REQUIRED
-
CVM_NOT_PERFORMED
public static final API.CardReceiptMetadata.VerificationMethod CVM_NOT_PERFORMED
-
CVM_FAILED
public static final API.CardReceiptMetadata.VerificationMethod CVM_FAILED
-
__
public static final API.CardReceiptMetadata.VerificationMethod __
-
-
Method Detail
-
values
public static API.CardReceiptMetadata.VerificationMethod[] 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 (API.CardReceiptMetadata.VerificationMethod c : API.CardReceiptMetadata.VerificationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.CardReceiptMetadata.VerificationMethod 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
-
-