Package org.eclipse.keyple.card.generic
Enum GenericCardSelection.FileControlInformation
- java.lang.Object
-
- java.lang.Enum<GenericCardSelection.FileControlInformation>
-
- org.eclipse.keyple.card.generic.GenericCardSelection.FileControlInformation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GenericCardSelection.FileControlInformation>
- Enclosing interface:
- GenericCardSelection
public static enum GenericCardSelection.FileControlInformation extends java.lang.Enum<GenericCardSelection.FileControlInformation>
Types of templates available in return for the Select Application command, according to the ISO7816-4 standard.- Since:
- 2.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FCI
File control information.FCP
File control parameters.FMD
File management data.NO_RESPONSE
No response expected.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GenericCardSelection.FileControlInformation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GenericCardSelection.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 GenericCardSelection.FileControlInformation FCI
File control information.- Since:
- 2.0.0
-
FCP
public static final GenericCardSelection.FileControlInformation FCP
File control parameters.- Since:
- 2.0.0
-
FMD
public static final GenericCardSelection.FileControlInformation FMD
File management data.- Since:
- 2.0.0
-
NO_RESPONSE
public static final GenericCardSelection.FileControlInformation NO_RESPONSE
No response expected.- Since:
- 2.0.0
-
-
Method Detail
-
values
public static GenericCardSelection.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 (GenericCardSelection.FileControlInformation c : GenericCardSelection.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 GenericCardSelection.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
-
-