Enum Class PosDataCode.VerificationMethod
- All Implemented Interfaces:
Serializable, Comparable<PosDataCode.VerificationMethod>, Constable, PosFlags.Flag
- Enclosing class:
PosDataCode
public static enum PosDataCode.VerificationMethod
extends Enum<PosDataCode.VerificationMethod>
implements PosFlags.Flag
Enumeration of cardholder verification methods used at the POS terminal.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCardholder verified by account-based digital signature.Cardholder verified by manual signature.No verification performed.Cardholder verified by offline biographics.Cardholder verified by offline biometrics.Cardholder verified by offline digitized signature analysis.Cardholder verified by offline manual verification.Cardholder verified by offline encrypted PIN.Cardholder verified by offline PIN in clear.Cardholder verified by online PIN.Cardholder verified by public key-based digital signature.Verification method is unknown. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intBit offset within the PosDataCode byte array for verification method flags. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the byte offset withinPosFlags.getBytes()where this flag's mask starts.intintValue()Returns the multi-byte bit mask for this flag (low byte applied atPosFlags.Flag.getOffset()).toString()Returns the enum constant of this class with the specified name.static PosDataCode.VerificationMethod[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Verification method is unknown. -
NONE
No verification performed. -
MANUAL_SIGNATURE
Cardholder verified by manual signature. -
ONLINE_PIN
Cardholder verified by online PIN. -
OFFLINE_PIN_IN_CLEAR
Cardholder verified by offline PIN in clear. -
OFFLINE_PIN_ENCRYPTED
Cardholder verified by offline encrypted PIN. -
OFFLINE_DIGITIZED_SIGNATURE_ANALYSIS
Cardholder verified by offline digitized signature analysis. -
OFFLINE_BIOMETRICS
Cardholder verified by offline biometrics. -
OFFLINE_MANUAL_VERIFICATION
Cardholder verified by offline manual verification. -
OFFLINE_BIOGRAPHICS
Cardholder verified by offline biographics. -
ACCOUNT_BASED_DIGITAL_SIGNATURE
Cardholder verified by account-based digital signature. -
PUBLIC_KEY_BASED_DIGITAL_SIGNATURE
Cardholder verified by public key-based digital signature.
-
-
Field Details
-
OFFSET
Bit offset within the PosDataCode byte array for verification method flags.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
intValue
Returns the multi-byte bit mask for this flag (low byte applied atPosFlags.Flag.getOffset()).- Specified by:
intValuein interfacePosFlags.Flag- Returns:
- bit mask as a packed integer
-
toString
- Overrides:
toStringin classEnum<PosDataCode.VerificationMethod>
-
getOffset
Returns the byte offset withinPosFlags.getBytes()where this flag's mask starts.- Specified by:
getOffsetin interfacePosFlags.Flag- Returns:
- byte offset
-