Enum ServerType

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

        public static final ServerType LOAD_BALANCER
      • 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 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