Enum Reader.Type
- java.lang.Object
-
- java.lang.Enum<Reader.Type>
-
- de.willuhn.jameica.hbci.passports.ddv.rmi.Reader.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Reader.Type>
- Enclosing interface:
- Reader
public static enum Reader.Type extends java.lang.Enum<Reader.Type>
Typ-Definition fuer die verschiedenen Arten von Karten.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getHeaderParam()
Liefert den Namen fuer das Lookup der Parameter in HBCI4Java.java.lang.String
getIdentifier()
Liefert den Identifier des Passports in HBCI4Java.boolean
isCTAPI()
Liefert true, wenn das ein CTAPI-Kartenleser ist.boolean
isPCSC()
Liefert true, wenn das ein PCSC-Kartenleser ist.static Reader.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Reader.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DDV_CTAPI
public static final Reader.Type DDV_CTAPI
DDV-Karte via CTAPI.
-
DDV_PCSC
public static final Reader.Type DDV_PCSC
DDV-Karte via PCSC.
-
RDH_PCSC
public static final Reader.Type RDH_PCSC
RDH-Karte via PCSC.
-
-
Method Detail
-
values
public static Reader.Type[] 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 (Reader.Type c : Reader.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reader.Type 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
-
getIdentifier
public java.lang.String getIdentifier()
Liefert den Identifier des Passports in HBCI4Java.- Returns:
- der Identifier des Passports in HBCI4Java.
-
getHeaderParam
public java.lang.String getHeaderParam()
Liefert den Namen fuer das Lookup der Parameter in HBCI4Java.- Returns:
- der Name fuer das Lookup der Parameter in HBCI4Java.
-
isPCSC
public boolean isPCSC()
Liefert true, wenn das ein PCSC-Kartenleser ist.- Returns:
- true, wenn das ein PCSC-Kartenleser ist.
-
isCTAPI
public boolean isCTAPI()
Liefert true, wenn das ein CTAPI-Kartenleser ist.- Returns:
- true, wenn das ein CTAPI-Kartenleser ist.
-
-