public enum RdsLocationFormat extends java.lang.Enum<RdsLocationFormat> implements Zustand<java.lang.Integer>
Enum Constant and Description |
---|
TIC
TIC Location, Wert 1.
|
TMC
TMC Location, Wert 0.
|
UNFORMATIERT
Unformatiert, Wert 2.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getCode()
liefert den Code des Zustandes.
|
java.lang.String |
getName()
liefert den Namen des Zustandes.
|
static RdsLocationFormat |
getStatus(int gesuchterCode)
liefert das Rds-Locationformat mit dem übergebenen Code.
|
static RdsLocationFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RdsLocationFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RdsLocationFormat TMC
public static final RdsLocationFormat TIC
public static final RdsLocationFormat UNFORMATIERT
public static RdsLocationFormat[] values()
for (RdsLocationFormat c : RdsLocationFormat.values()) System.out.println(c);
public static RdsLocationFormat 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 RdsLocationFormat getStatus(int gesuchterCode)
gesuchterCode
- der Code für den ein Zustand gesucht wird.public java.lang.Integer getCode()