Class AttStartStoppZustand
- java.lang.Object
-
- java.lang.Number
-
- de.bsvrz.sys.funclib.bitctrl.modell.att.Zahl<java.lang.Byte>
-
- de.bsvrz.sys.funclib.bitctrl.modell.tmrechner.attribute.AttStartStoppZustand
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<de.bsvrz.sys.funclib.bitctrl.modell.att.Zahl<java.lang.Byte>>
public class AttStartStoppZustand extends de.bsvrz.sys.funclib.bitctrl.modell.att.Zahl<java.lang.Byte>
Zustand einer Inkarnation oder eines StartStopp Blocks.Der Attributtyp wird verwendet, um Zustände einzelner Inkarnationen der StartStopp Applikation zu beschreiben. Einzelne Zustände werden auch verwendet, um den Zustand eines StartStopp Blocks zu beschreiben.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static AttStartStoppZustand
ZUSTAND_0_ANGELEGT
Inkarnation/StartStopp Block wurde angelegt.static AttStartStoppZustand
ZUSTAND_1_WARTE_STARTBEDINGUNG
Inkarnation wartet auf Erfüllung der Startbedingung.static AttStartStoppZustand
ZUSTAND_10_GELOESCHT
Inkarnation/StartStopp Block gelöscht.static AttStartStoppZustand
ZUSTAND_1N_FEHLER
Beim Starten der Inkarnation (des StartStopp Blocks) ist ein Fehler aufgetreten.static AttStartStoppZustand
ZUSTAND_3_STARTEN
Inkarnation ist in der Startphase.static AttStartStoppZustand
ZUSTAND_4_GESTARTET
Inkarnation/StartStopp Block ist gestartet.static AttStartStoppZustand
ZUSTAND_5_INITIALISIERT
Inkarnation ist initialisiert.static AttStartStoppZustand
ZUSTAND_6_WARTE_STOPPBEDINGUNG
Inkarnation wartet auf Erfüllung der Stoppbedingung.static AttStartStoppZustand
ZUSTAND_7_STOPPEN
Inkarnation wird gestoppt.static AttStartStoppZustand
ZUSTAND_8_GESTOPPT
Inkarnation/StartStopp Block.static AttStartStoppZustand
ZUSTAND_9_WARTE_INTERVALL
Inkarnation wartet auf zyklischen Neustart.
-
Constructor Summary
Constructors Constructor Description AttStartStoppZustand(java.lang.Byte value)
Erzeugte eine neues Attribut StartStoppZustand.
-
Method Summary
Modifier and Type Method Description static java.util.List<AttStartStoppZustand>
getZustaende()
Gibt alle Zustände zurück, die das Attribut besitzen kann.static AttStartStoppZustand
getZustand(java.lang.Byte value)
Gibt den Zustand zu einer Zahl zurück odernull
, wenn die Zahl keinen Zustand repräsentiert.static AttStartStoppZustand
getZustand(java.lang.String value)
Gibt den Zustand zu einem Zustandsnamen zurück odernull
, wenn kein Zustand einen solchen Namen hat.
-
-
-
Field Detail
-
ZUSTAND_0_ANGELEGT
public static final AttStartStoppZustand ZUSTAND_0_ANGELEGT
Inkarnation/StartStopp Block wurde angelegt.
-
ZUSTAND_1_WARTE_STARTBEDINGUNG
public static final AttStartStoppZustand ZUSTAND_1_WARTE_STARTBEDINGUNG
Inkarnation wartet auf Erfüllung der Startbedingung.
-
ZUSTAND_3_STARTEN
public static final AttStartStoppZustand ZUSTAND_3_STARTEN
Inkarnation ist in der Startphase.
-
ZUSTAND_4_GESTARTET
public static final AttStartStoppZustand ZUSTAND_4_GESTARTET
Inkarnation/StartStopp Block ist gestartet.
-
ZUSTAND_5_INITIALISIERT
public static final AttStartStoppZustand ZUSTAND_5_INITIALISIERT
Inkarnation ist initialisiert.
-
ZUSTAND_6_WARTE_STOPPBEDINGUNG
public static final AttStartStoppZustand ZUSTAND_6_WARTE_STOPPBEDINGUNG
Inkarnation wartet auf Erfüllung der Stoppbedingung.
-
ZUSTAND_7_STOPPEN
public static final AttStartStoppZustand ZUSTAND_7_STOPPEN
Inkarnation wird gestoppt.
-
ZUSTAND_8_GESTOPPT
public static final AttStartStoppZustand ZUSTAND_8_GESTOPPT
Inkarnation/StartStopp Block.
-
ZUSTAND_9_WARTE_INTERVALL
public static final AttStartStoppZustand ZUSTAND_9_WARTE_INTERVALL
Inkarnation wartet auf zyklischen Neustart.
-
ZUSTAND_10_GELOESCHT
public static final AttStartStoppZustand ZUSTAND_10_GELOESCHT
Inkarnation/StartStopp Block gelöscht.
-
ZUSTAND_1N_FEHLER
public static final AttStartStoppZustand ZUSTAND_1N_FEHLER
Beim Starten der Inkarnation (des StartStopp Blocks) ist ein Fehler aufgetreten.
-
-
Method Detail
-
getZustand
public static AttStartStoppZustand getZustand(java.lang.Byte value)
Gibt den Zustand zu einer Zahl zurück odernull
, wenn die Zahl keinen Zustand repräsentiert.- Parameters:
value
- ein Zahlenwert- Returns:
- der Zustand zu dem Zahlenwert oder
null
, wenn die Zahl keine Entsprechnung als Zustand besitzt.
-
getZustand
public static AttStartStoppZustand getZustand(java.lang.String value)
Gibt den Zustand zu einem Zustandsnamen zurück odernull
, wenn kein Zustand einen solchen Namen hat.- Parameters:
value
- der Zustandsname- Returns:
- der Zustand zu dem Zustandsnamen oder
null
, wenn kein Zustand einen solchen Namen hat.
-
getZustaende
public static java.util.List<AttStartStoppZustand> getZustaende()
Gibt alle Zustände zurück, die das Attribut besitzen kann.- Returns:
- alle Zustände die das Attribut annehmen kann.
-
-