Package com.mongodb.connection
Enum ServerType
- java.lang.Object
-
- java.lang.Enum<ServerType>
-
- com.mongodb.connection.ServerType
-
- All Implemented Interfaces:
Serializable
,Comparable<ServerType>
public enum ServerType extends Enum<ServerType>
The type of the server.- Since:
- 3.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REPLICA_SET_ARBITER
A replica set arbiter.REPLICA_SET_GHOST
A replica set member that does not report a set name or a hosts listREPLICA_SET_OTHER
A replica set member that is none of the other types (a passive, for example).REPLICA_SET_PRIMARY
A replica set primary.REPLICA_SET_SECONDARY
A replica set secondary.SHARD_ROUTER
A router to a sharded cluster, i.e.STANDALONE
A standalone mongod server.UNKNOWN
The server type is not yet known.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract ClusterType
getClusterType()
The type of the cluster to which this server belongsstatic ServerType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ServerType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDALONE
public static final ServerType STANDALONE
A standalone mongod server.
-
REPLICA_SET_PRIMARY
public static final ServerType REPLICA_SET_PRIMARY
A replica set primary.
-
REPLICA_SET_SECONDARY
public static final ServerType REPLICA_SET_SECONDARY
A replica set secondary.
-
REPLICA_SET_ARBITER
public static final ServerType REPLICA_SET_ARBITER
A replica set arbiter.
-
REPLICA_SET_OTHER
public static final ServerType REPLICA_SET_OTHER
A replica set member that is none of the other types (a passive, for example).
-
REPLICA_SET_GHOST
public static final ServerType REPLICA_SET_GHOST
A replica set member that does not report a set name or a hosts list
-
SHARD_ROUTER
public static final ServerType SHARD_ROUTER
A router to a sharded cluster, i.e. a mongos server.
-
UNKNOWN
public static final ServerType UNKNOWN
The server type is not yet known.
-
-
Method Detail
-
values
public static ServerType[] 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 (ServerType c : ServerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServerType 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 nameNullPointerException
- if the argument is null
-
getClusterType
public abstract ClusterType getClusterType()
The type of the cluster to which this server belongs- Returns:
- the cluster type
-
-