public enum KernelType extends Enum<KernelType>
Enumeration that specifies the type of kernel.
This field is used as attribute of the
The following values are valid:
Specification: retail.
Enum Constant and Description |
---|
EMV_CONTACT
EMV Contact kernel.
|
ENTRY_POINT
EMV Contactless Entrypoint.
|
KERNEL1
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
KERNEL2
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
KERNEL3
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
KERNEL4
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
KERNEL5
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
KERNEL6
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
KERNEL7
EMV Contactless kernel number according to kernel numbering as defined by EMV contactless
Book A [B35].
|
Modifier and Type | Method and Description |
---|---|
static KernelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KernelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KernelType EMV_CONTACT
public static final KernelType ENTRY_POINT
public static final KernelType KERNEL1
public static final KernelType KERNEL2
public static final KernelType KERNEL3
public static final KernelType KERNEL4
public static final KernelType KERNEL5
public static final KernelType KERNEL6
public static final KernelType KERNEL7
public static KernelType[] values()
for (KernelType c : KernelType.values()) System.out.println(c);
public static KernelType 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 null