public enum ProcessType extends Enum<ProcessType>
| Enum Constant and Description |
|---|
NONE
used for startTransaction
|
ORDER
Bestellung
|
OTHER
Sonstiger Vorgang, z.B.
|
RECEIPT
Kssenbeleg
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ProcessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessType RECEIPT
public static final ProcessType ORDER
public static final ProcessType OTHER
public static final ProcessType NONE
public static ProcessType[] values()
for (ProcessType c : ProcessType.values()) System.out.println(c);
public static ProcessType 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 String toString()
toString in class Enum<ProcessType>Copyright © 2021. All rights reserved.