Enum SnapshotState

    • Enum Constant Detail

      • IN_PROGRESS

        public static final SnapshotState IN_PROGRESS
        Snapshot process has started
      • SUCCESS

        public static final SnapshotState SUCCESS
        Snapshot process completed successfully
      • FAILED

        public static final SnapshotState FAILED
        Snapshot failed
      • PARTIAL

        public static final SnapshotState PARTIAL
        Snapshot was partial successful
      • INCOMPATIBLE

        public static final SnapshotState INCOMPATIBLE
        Snapshot is incompatible with the current version of the cluster
    • Method Detail

      • values

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

        public static SnapshotState 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
      • value

        public byte value()
        Returns code that represents the snapshot state
        Returns:
        code for the state
      • completed

        public boolean completed()
        Returns true if snapshot completed (successfully or not)
        Returns:
        true if snapshot completed, false otherwise
      • restorable

        public boolean restorable()
        Returns true if snapshot can be restored (at least partially)
        Returns:
        true if snapshot can be restored, false otherwise
      • fromValue

        public static SnapshotState fromValue​(byte value)
        Generate snapshot state from code
        Parameters:
        value - the state code
        Returns:
        state