Package org.calypsonet.terminal.card.spi
Enum CardSelectorSpi.FileControlInformation
- java.lang.Object
-
- java.lang.Enum<CardSelectorSpi.FileControlInformation>
-
- org.calypsonet.terminal.card.spi.CardSelectorSpi.FileControlInformation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CardSelectorSpi.FileControlInformation>
- Enclosing interface:
- CardSelectorSpi
public static enum CardSelectorSpi.FileControlInformation extends java.lang.Enum<CardSelectorSpi.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.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 CardSelectorSpi.FileControlInformation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CardSelectorSpi.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 CardSelectorSpi.FileControlInformation FCI
File control information.- Since:
- 1.0.0
-
FCP
public static final CardSelectorSpi.FileControlInformation FCP
File control parameters.- Since:
- 1.0.0
-
FMD
public static final CardSelectorSpi.FileControlInformation FMD
File management data.- Since:
- 1.0.0
-
NO_RESPONSE
public static final CardSelectorSpi.FileControlInformation NO_RESPONSE
No response expected.- Since:
- 1.0.0
-
-
Method Detail
-
values
public static CardSelectorSpi.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 (CardSelectorSpi.FileControlInformation c : CardSelectorSpi.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 CardSelectorSpi.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
-
-