java.io.Serializable, java.lang.Comparable<BatchBookType>public enum BatchBookType extends java.lang.Enum<BatchBookType>
| Enum Constant | Description |
|---|---|
FALSE |
BatchBooking-Flag als false senden.
|
NONE |
BatchBooking-Flag gar nicht mitschicken.
|
TRUE |
BatchBooking-Flag als true senden.
|
| Modifier and Type | Field | Description |
|---|---|---|
static BatchBookType |
DEFAULT |
Der Default-Typ (NONE).
|
| Modifier and Type | Method | Description |
|---|---|---|
static BatchBookType |
byValue(java.lang.Boolean value) |
Liefert den passenden Batchbook-Typ fuer den angegebenen Wert.
|
static BatchBookType |
byValue(java.lang.String value) |
Liefert den passenden Batchbook-Typ fuer den angegebenen Wert.
|
java.lang.Boolean |
getBooleanValue() |
Liefert den zugehoerigen Boolean-Wert.
|
java.lang.String |
getDescription() |
Liefert einen sprechenden Namen fuer den Typ.
|
java.lang.String |
getValue() |
Liefert den zugehoerigen Property-Wert.
|
java.lang.String |
toString() |
|
static BatchBookType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static BatchBookType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchBookType NONE
public static final BatchBookType TRUE
public static final BatchBookType FALSE
public static BatchBookType DEFAULT
public static BatchBookType[] values()
for (BatchBookType c : BatchBookType.values()) System.out.println(c);
public static BatchBookType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public java.lang.Boolean getBooleanValue()
public java.lang.String getDescription()
public static BatchBookType byValue(java.lang.String value)
value - der Wert.public static BatchBookType byValue(java.lang.Boolean value)
value - der Wert.public java.lang.String toString()
toString in class java.lang.Enum<BatchBookType>Enum.toString()