public enum ArtMittelwertBildung extends Enum<ArtMittelwertBildung> implements Zustand<Integer>
Enum Constant and Description |
---|
ARITHMETISCH
arithmetischer Mittelwert.
|
GLEITEND
gleitende Mittelwertbildung.
|
UNBEKANNT
die Art ist nicht bekannt.
|
Modifier and Type | Field and Description |
---|---|
private int |
code
der Code des Zustandes.
|
private String |
name
der Name des Zustandes.
|
Modifier and Type | Method and Description |
---|---|
Integer |
getCode()
liefert den Code des Zustandes.
|
String |
getName()
liefert den Namen des Zustandes.
|
static ArtMittelwertBildung |
getStatus(int gesuchterCode)
liefert den Baustellenstatus mit dem übergebenen Code.
|
static ArtMittelwertBildung |
valueOf(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
private int code
private String name
public static ArtMittelwertBildung[] values()
for (ArtMittelwertBildung c : ArtMittelwertBildung.values()) System.out.println(c);
public static ArtMittelwertBildung valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ArtMittelwertBildung getStatus(int gesuchterCode)
gesuchterCode
- der Code für den ein Zustand gesucht wird.public Integer getCode()
Copyright © 2017 BitCtrl Systems GmbH. All rights reserved.