public enum Stoerfallsituation extends java.lang.Enum<Stoerfallsituation>
Enum Constant and Description |
---|
DICHTER_VERKEHR |
FREIER_VERKEHR |
KEINE_AUSSAGE |
STAU |
ZAEHFLIESSENDER_VERKEHR |
Modifier and Type | Method and Description |
---|---|
static Stoerfallsituation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Stoerfallsituation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stoerfallsituation KEINE_AUSSAGE
public static final Stoerfallsituation FREIER_VERKEHR
public static final Stoerfallsituation DICHTER_VERKEHR
public static final Stoerfallsituation ZAEHFLIESSENDER_VERKEHR
public static final Stoerfallsituation STAU
public static Stoerfallsituation[] values()
for (Stoerfallsituation c : Stoerfallsituation.values()) System.out.println(c);
public static Stoerfallsituation 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 null