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