Enum CalypsoCardSelection.FileControlInformation
- java.lang.Object
-
- java.lang.Enum<CalypsoCardSelection.FileControlInformation>
-
- org.calypsonet.terminal.calypso.card.CalypsoCardSelection.FileControlInformation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CalypsoCardSelection.FileControlInformation>
- Enclosing interface:
- CalypsoCardSelection
public static enum CalypsoCardSelection.FileControlInformation extends java.lang.Enum<CalypsoCardSelection.FileControlInformation>
Types of templates available in return for the Select Application command, according to the ISO7816-4 standard.- Since:
- 1.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FCI
File control information.NO_RESPONSE
No response expected.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CalypsoCardSelection.FileControlInformation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CalypsoCardSelection.FileControlInformation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FCI
public static final CalypsoCardSelection.FileControlInformation FCI
File control information.- Since:
- 1.0.0
-
NO_RESPONSE
public static final CalypsoCardSelection.FileControlInformation NO_RESPONSE
No response expected.- Since:
- 1.0.0
-
-
Method Detail
-
values
public static CalypsoCardSelection.FileControlInformation[] 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 (CalypsoCardSelection.FileControlInformation c : CalypsoCardSelection.FileControlInformation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CalypsoCardSelection.FileControlInformation valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-