public enum RdsLocationKategorie extends java.lang.Enum<RdsLocationKategorie> implements Zustand<java.lang.Integer>
Enum Constant and Description |
---|
GEBIET
Gebiet, Wert 1.
|
LINIE
Linie, Wert 3.
|
NICHT_BENUTZT
Nicht benutzt, Wert 0.
|
PUNKT
bedeutender Punkt, Wert 2.
|
SEGMENT
Segment, Wert 4.
|
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 RdsLocationKategorie |
getStatus(int gesuchterCode)
liefert die Rds-Locationkategorie mit dem übergebenen Code.
|
static RdsLocationKategorie |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RdsLocationKategorie[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RdsLocationKategorie NICHT_BENUTZT
public static final RdsLocationKategorie GEBIET
public static final RdsLocationKategorie PUNKT
public static final RdsLocationKategorie LINIE
public static final RdsLocationKategorie SEGMENT
public static RdsLocationKategorie[] values()
for (RdsLocationKategorie c : RdsLocationKategorie.values()) System.out.println(c);
public static RdsLocationKategorie 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 RdsLocationKategorie getStatus(int gesuchterCode)
gesuchterCode
- der Code für den ein Zustand gesucht wird.public java.lang.Integer getCode()