Enum RedisClientType

    • Enum Constant Detail

      • STANDALONE

        public static final RedisClientType STANDALONE
        The client should work in single server mode (the default).
      • SENTINEL

        public static final RedisClientType SENTINEL
        The client should work in sentinel mode. When this mode is active, use the RedisRole to define which role to get the client connection to.
      • CLUSTER

        public static final RedisClientType CLUSTER
        The client should work in cluster mode. When this mode is active, use the RedisReplicas to define when replica nodes can be used for read only queries, and use RedisClusterTransactions to define how transactions should be handled.
      • REPLICATION

        public static final RedisClientType REPLICATION
        The client should work in replication mode. When this mode is active, use the RedisReplicas to define when replica nodes can be used for read only queries.
    • Method Detail

      • values

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

        public static RedisClientType 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