Enum Journal.JournalState

    • 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 replica. So if the replicating server stops, the replica 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 replica. That means that if the replicating server stops, the replica 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 active.
    • 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​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null