Package org.eclipse.keyple.plugin.pcsc
Enum PcscReader.DisconnectionMode
- java.lang.Object
-
- java.lang.Enum<PcscReader.DisconnectionMode>
-
- org.eclipse.keyple.plugin.pcsc.PcscReader.DisconnectionMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PcscReader.DisconnectionMode>
- Enclosing interface:
- PcscReader
public static enum PcscReader.DisconnectionMode extends java.lang.Enum<PcscReader.DisconnectionMode>
Action to be taken after the card is disconnected.- Since:
- 2.0.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PcscReader.DisconnectionMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PcscReader.DisconnectionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESET
public static final PcscReader.DisconnectionMode RESET
Resets the card- Since:
- 2.0.0
-
LEAVE
public static final PcscReader.DisconnectionMode LEAVE
Keeps the status of the card unchanged- Since:
- 2.0.0
-
-
Method Detail
-
values
public static PcscReader.DisconnectionMode[] 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 (PcscReader.DisconnectionMode c : PcscReader.DisconnectionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PcscReader.DisconnectionMode 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
-
-