Enum Cluster.State

    • Enum Constant Detail

      • NOT_KNOWN

        public static final Cluster.State NOT_KNOWN
        The state of the cluster could not be determined.
      • READY

        public static final Cluster.State READY
        The cluster has been successfully created and is ready to serve requests.
      • CREATING

        public static final Cluster.State CREATING
        The cluster is currently being created, and may be destroyed if the creation process encounters an error. A cluster may not be able to serve requests while being created.
      • RESIZING

        public static final Cluster.State RESIZING
        The cluster is currently being resized, and may revert to its previous node count if the process encounters an error. A cluster is still capable of serving requests while being resized, but may exhibit performance as if its number of allocated nodes is between the starting and requested states.
      • DISABLED

        public static final Cluster.State DISABLED
        The cluster has no backing nodes. The data (tables) still exist, but no operations can be performed on the cluster.
      • UNRECOGNIZED

        public static final Cluster.State UNRECOGNIZED
        The state of the cluster is not known by this client. Please upgrade your client.
    • Method Detail

      • values

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

        public static Cluster.State 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
      • fromProto

        @InternalApi
        public static Cluster.State fromProto​(Cluster.State proto)
        Wraps the protobuf. This method is considered an internal implementation detail and not meant to be used by applications.
      • toProto

        @InternalApi
        public Cluster.State toProto()
        Creates the request protobuf. This method is considered an internal implementation detail and not meant to be used by applications.