public enum KnownTANProcess extends Enum<KnownTANProcess>
| 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 |
determine(String code)
Ermittelt den passenden TAN-Prozess fuer den angegebenen Code.
|
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 static KnownTANProcess determine(String code)
code - der Code.public boolean is(String code)
code - der zu pruefende Code.public String getCode()
Copyright © 2019. All rights reserved.