Package org.eclipse.keyple.plugin.pcsc
Enum Class PcscSupportedContactProtocol
java.lang.Object
java.lang.Enum<PcscSupportedContactProtocol>
org.eclipse.keyple.plugin.pcsc.PcscSupportedContactProtocol
- All Implemented Interfaces:
Serializable
,Comparable<PcscSupportedContactProtocol>
,Constable
Non-exhaustive list of protocols supported by common contact PC/SC readers.
TODO Improve protocol identification
- Since:
- 2.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionISO7816-3 Card (unspecified communication protocol)
Default rule =3.*
ISO7816-3 Card communicating with T=0 protocol
Default rule =3.*
ISO7816-3 Card communicating with T=1 protocol
Default rule =3.*
-
Method Summary
Modifier and TypeMethodDescriptionstatic PcscSupportedContactProtocol
Returns the enum constant of this class with the specified name.static PcscSupportedContactProtocol[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ISO_7816_3
ISO7816-3 Card (unspecified communication protocol)
Default rule =3.*
- Since:
- 2.0.0
-
ISO_7816_3_T0
ISO7816-3 Card communicating with T=0 protocol
Default rule =3.*
- Since:
- 2.0.0
-
ISO_7816_3_T1
ISO7816-3 Card communicating with T=1 protocol
Default rule =3.*
- Since:
- 2.0.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-