Enum Journal.JournalState

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      LOADED
      The journal is fully operational.
      STARTED
      The journal has some fields initialized and services running.
      STOPPED  
      SYNCING
      When a replicating server is still not synchronized with its live.
      SYNCING_UP_TO_DATE
      Journal is being used by a replicating server which is up-to-date with its live.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Journal.JournalState valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Journal.JournalState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • STARTED

        public static final Journal.JournalState STARTED
        The journal has some fields initialized and services running. But it is not fully operational. See LOADED.
      • SYNCING

        public static final Journal.JournalState SYNCING
        When a replicating server is still not synchronized with its live. So if the live stops, the backup may not fail-over and will stop as well.
      • SYNCING_UP_TO_DATE

        public static final Journal.JournalState SYNCING_UP_TO_DATE
        Journal is being used by a replicating server which is up-to-date with its live. That means that if the live stops, the backup can fail-over.
      • LOADED

        public static final Journal.JournalState LOADED
        The journal is fully operational. This is the state the journal should be when its server is live.
    • Method Detail

      • values

        public static Journal.JournalState[] 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 (Journal.JournalState c : Journal.JournalState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Journal.JournalState 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 name
        java.lang.NullPointerException - if the argument is null