public enum EreignisTypenOption extends java.lang.Enum<EreignisTypenOption>
| Enum Constant and Description |
|---|
Alle
es werden alle Ereignisse in die Beantwortung einbezogen.
|
Nicht
es werden nur Ereignisse in die Beantwortung einbezogen, die nicht den in
einer übergebenen Liste von Ereignistypen entsprechen.
|
Nur
es werden nur Ereignisse in die Beantwortung einbezogen, die den in einer
übergebenen Liste von Ereignistypen entsprechen.
|
| Modifier and Type | Method and Description |
|---|---|
static EreignisTypenOption |
of(int code)
liefert die Option, die mit dem übergebenen Code verknüpft ist.
|
static EreignisTypenOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EreignisTypenOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EreignisTypenOption Alle
public static final EreignisTypenOption Nur
public static final EreignisTypenOption Nicht
public static EreignisTypenOption[] values()
for (EreignisTypenOption c : EreignisTypenOption.values()) System.out.println(c);
public static EreignisTypenOption 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 static EreignisTypenOption of(int code)
code - der CodeEreignisTypenOption