public enum KnownTANProcess extends Enum<KnownTANProcess>
Modifier and Type | Class and Description |
---|---|
static class |
KnownTANProcess.Variant
Prozess-Variante.
|
Enum Constant and Description |
---|
PROCESS1
Prozess-Variante 1.
|
PROCESS2_STEP1
Prozess-Variante 2, Schritt 1.
|
PROCESS2_STEP2
Prozess-Variante 2, Schritt 2.
|
Modifier and Type | Method and Description |
---|---|
static KnownTANProcess |
get(KnownTANProcess.Variant v,
int step)
Ermittelt den passenden TAN-Prozess fuer die Variante und die Schritt-Nummer.
|
String |
getCode()
Liefert den Code des TAN-Prozess-Schrittes.
|
boolean |
is(String code)
Prueft der angegebene Code identisch ist.
|
static KnownTANProcess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KnownTANProcess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KnownTANProcess PROCESS1
public static final KnownTANProcess PROCESS2_STEP1
public static final KnownTANProcess PROCESS2_STEP2
public static KnownTANProcess[] values()
for (KnownTANProcess c : KnownTANProcess.values()) System.out.println(c);
public static KnownTANProcess valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean is(String code)
code
- der zu pruefende Code.public String getCode()
public static KnownTANProcess get(KnownTANProcess.Variant v, int step)
v
- die Prozess-Variante.step
- die Schritt-Nummer.PROCESS2_STEP1
.Copyright © 2022. All rights reserved.