public enum DialogEvent extends Enum<DialogEvent>
Enum Constant and Description |
---|
JOBS_CREATED
Wird gesendet, nachdem die Dialog-Initialisierung abgeschlossen ist und bevor die eigentlichen Geschaeftsvorfaelle an die Bank gesendet werden.
|
MSG_CREATE
Wird gesendet, bevor HBCI4Java die Nachricht erzeugt aber noch nicht an die Bank gesendet hat.
|
MSG_CREATED
Wird versendet, bevor HBCI4Java die Nachricht an die Bank gesendet hat und das Response vorliegt.
|
MSG_SENT
Wird versendet, nachdem HBCI4Java die Nachricht an die Bank gesendet hat und das Response vorliegt.
|
Modifier and Type | Method and Description |
---|---|
static DialogEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialogEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogEvent MSG_CREATE
public static final DialogEvent MSG_CREATED
public static final DialogEvent MSG_SENT
public static final DialogEvent JOBS_CREATED
public static DialogEvent[] values()
for (DialogEvent c : DialogEvent.values()) System.out.println(c);
public static DialogEvent 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 nullCopyright © 2022. All rights reserved.