Enum Class ReplicationStatus

java.lang.Object
java.lang.Enum<ReplicationStatus>
org.openspaces.admin.space.ReplicationStatus
All Implemented Interfaces:
Serializable, Comparable<ReplicationStatus>, java.lang.constant.Constable

public enum ReplicationStatus extends Enum<ReplicationStatus>
The replication status from one SpaceInstance to its replication target.
Author:
kimchy
  • Enum Constant Details

    • ACTIVE

      public static final ReplicationStatus ACTIVE
      The replication is active.
    • DISABLED

      public static final ReplicationStatus DISABLED
      The replication is disabled.
    • DISCONNECTED

      public static final ReplicationStatus DISCONNECTED
      The replication is disconnected.
  • Method Details

    • values

      public static ReplicationStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ReplicationStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null