Enum Aufgabe
- java.lang.Object
-
- java.lang.Enum<Aufgabe>
-
- de.desy.mst.libs.framework.mstapp.tabellendaten.entry.Aufgabe
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Aufgabe>
public enum Aufgabe extends java.lang.Enum<Aufgabe>
Hilfsklasse fuer echtes AEntry Status. Aufgaben sind hart kodiert. Bei neuen Aufgaben muss die Source angepasst werden (einfach und so praktischer, da als EntwicklungsZeitKonzept gebraucht). Bitte danach AufgabenTest erfolgreich laufen lassen.- Version:
- 1.0.0
- Author:
- ws
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Allgemeine
ChopperStatus
D2_Energien
Hauptmagnete
HF
Klima
Korrekturspulen
Monitore
OFFEN_3
OFFEN_4
OFFEN_7
OFFEN_8
PersonenInterlock
Schrittmotorsteuerung
Scraper
Synchrotronmagnete
Targetsteuerung
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
createStatusAbfrage(int aufgNr)
static Aufgabe
getByAufgNr(int aufgNr)
static Aufgabe
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Aufgabe[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Allgemeine
public static final Aufgabe Allgemeine
-
Korrekturspulen
public static final Aufgabe Korrekturspulen
-
Hauptmagnete
public static final Aufgabe Hauptmagnete
-
OFFEN_3
public static final Aufgabe OFFEN_3
-
OFFEN_4
public static final Aufgabe OFFEN_4
-
HF
public static final Aufgabe HF
-
Monitore
public static final Aufgabe Monitore
-
OFFEN_7
public static final Aufgabe OFFEN_7
-
OFFEN_8
public static final Aufgabe OFFEN_8
-
Klima
public static final Aufgabe Klima
-
PersonenInterlock
public static final Aufgabe PersonenInterlock
-
Scraper
public static final Aufgabe Scraper
-
ChopperStatus
public static final Aufgabe ChopperStatus
-
Synchrotronmagnete
public static final Aufgabe Synchrotronmagnete
-
Schrittmotorsteuerung
public static final Aufgabe Schrittmotorsteuerung
-
Targetsteuerung
public static final Aufgabe Targetsteuerung
-
D2_Energien
public static final Aufgabe D2_Energien
-
-
Method Detail
-
values
public static Aufgabe[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Aufgabe c : Aufgabe.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Aufgabe valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getByAufgNr
public static final Aufgabe getByAufgNr(int aufgNr)
-
createStatusAbfrage
public static java.lang.String createStatusAbfrage(int aufgNr)
-
-