public enum ArtMittelwertBildung extends java.lang.Enum<ArtMittelwertBildung> implements Zustand<java.lang.Integer>
Enum Constant and Description |
---|
ARITHMETISCH
arithmetischer Mittelwert.
|
GLEITEND
gleitende Mittelwertbildung.
|
UNBEKANNT
die Art ist nicht bekannt.
|
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 ArtMittelwertBildung |
getStatus(int gesuchterCode)
liefert den Baustellenstatus mit dem übergebenen Code.
|
static ArtMittelwertBildung |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArtMittelwertBildung[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtMittelwertBildung UNBEKANNT
public static final ArtMittelwertBildung GLEITEND
public static final ArtMittelwertBildung ARITHMETISCH
public static ArtMittelwertBildung[] values()
for (ArtMittelwertBildung c : ArtMittelwertBildung.values()) System.out.println(c);
public static ArtMittelwertBildung 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 ArtMittelwertBildung getStatus(int gesuchterCode)
gesuchterCode
- der Code für den ein Zustand gesucht wird.public java.lang.Integer getCode()