public enum InformationStatusEnum extends java.lang.Enum<InformationStatusEnum>
Java-Klasse für InformationStatusEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="InformationStatusEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="real"/> <enumeration value="technicalExercise"/> <enumeration value="test"/> </restriction> </simpleType>
Enum Constant and Description |
---|
REAL
The information is real.
|
TECHNICAL_EXERCISE
The information is part of an exercise which includes tests of associated technical subsystems.
|
TEST
The information is part of a test for checking the exchange of this type of information.
|
Modifier and Type | Method and Description |
---|---|
static InformationStatusEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static InformationStatusEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InformationStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InformationStatusEnum REAL
public static final InformationStatusEnum TECHNICAL_EXERCISE
public static final InformationStatusEnum TEST
public static InformationStatusEnum[] values()
for (InformationStatusEnum c : InformationStatusEnum.values()) System.out.println(c);
public static InformationStatusEnum 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 value()
public static InformationStatusEnum fromValue(java.lang.String v)