Class ProtocolState


  • public final class ProtocolState
    extends java.lang.Object
    Definiert die möglichen Zustände eines Protokolls.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()
      Liefert eine textuelle Beschreibung dieses Zustands zurück.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • CREATED

        public static final ProtocolState CREATED
        Stabiler Zustand für ein noch nicht gestartetes Protokoll.
      • STARTING

        public static final ProtocolState STARTING
        Übergangszustand für ein startendes Protokoll.
      • STARTED

        public static final ProtocolState STARTED
        Stabiler Zustand für ein gestartetes Protokoll.
      • STOPPING

        public static final ProtocolState STOPPING
        Übergangszustand für ein zu stoppendes Protokoll.
      • STOPPED

        public static final ProtocolState STOPPED
        Stabiler Zustand für ein gestopptes Protokoll.
    • Method Detail

      • toString

        public java.lang.String toString()
        Liefert eine textuelle Beschreibung dieses Zustands zurück. Das genaue Format ist nicht festgelegt und kann sich ändern.
        Overrides:
        toString in class java.lang.Object
        Returns:
        Beschreibung dieses Zustands.