Enum Class ClusterNodeType
- All Implemented Interfaces:
Serializable,Comparable<ClusterNodeType>,Constable
Represents the type of cluster node that is in use
- Since:
- 5.0
- Version:
- 8.0
- Author:
- John Bresnahan, Paul Place
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe representation of another Stardog Cluster, used for geo replicas to sync from.A full cluster member.The node's purpose is to attempt to stay as in sync as possible with the cluster but not join.The node's purpose is to attempt to stay as in sync as possible with the cluster but not join. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterNodeTypeReturns the enum constant of this class with the specified name.static ClusterNodeType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FULL
A full cluster member. The node's purpose is to join the cluster and have full cluster member privileges. -
STANDBY
The node's purpose is to attempt to stay as in sync as possible with the cluster but not join. The user can promote the node to be a FULL cluster member, if needed. -
READ_REPLICA
The node's purpose is to attempt to stay as in sync as possible with the cluster but not join. The node can also respond to queries, but it is not allowed to join the cluster. -
ENDPOINT
The representation of another Stardog Cluster, used for geo replicas to sync from.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-