Enum Class ServerType

java.lang.Object
java.lang.Enum<ServerType>
com.mongodb.connection.ServerType
All Implemented Interfaces:
Serializable, Comparable<ServerType>, java.lang.constant.Constable

public enum ServerType extends Enum<ServerType>
The type of the server.
Since:
3.0
  • Enum Constant Details

    • 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.
    • LOAD_BALANCER

      public static final ServerType LOAD_BALANCER
    • UNKNOWN

      public static final ServerType UNKNOWN
      The server type is not yet known.
  • Method Details

    • values

      public static ServerType[] 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 ServerType 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
    • getClusterType

      public abstract ClusterType getClusterType()
      The type of the cluster to which this server belongs
      Returns:
      the cluster type