org.springframework.data.redis.core.types
Enum RedisClientInfo.INFO

java.lang.Object
  extended by java.lang.Enum<RedisClientInfo.INFO>
      extended by org.springframework.data.redis.core.types.RedisClientInfo.INFO
All Implemented Interfaces:
Serializable, Comparable<RedisClientInfo.INFO>
Enclosing class:
RedisClientInfo

public static enum RedisClientInfo.INFO
extends Enum<RedisClientInfo.INFO>


Enum Constant Summary
ADDRESS_PORT
           
BUFFER_FREE_SPACE
           
BUFFER_LENGTH
           
CHANNEL_SUBSCRIBTIONS
           
CONNECTION_AGE
           
CONNECTION_IDLE
           
CONNECTION_NAME
           
DATABSE_ID
           
EVENTS
           
FILE_DESCRIPTOR
           
FLAGS
           
LAST_COMMAND
           
MULIT_COMMAND_CONTEXT
           
OUTPUT_BUFFER_LENGTH
           
OUTPUT_BUFFER_MEMORY_USAGE
           
OUTPUT_LIST_LENGTH
           
PATTERN_SUBSCRIBTIONS
           
 
Method Summary
static RedisClientInfo.INFO valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RedisClientInfo.INFO[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADDRESS_PORT

public static final RedisClientInfo.INFO ADDRESS_PORT

FILE_DESCRIPTOR

public static final RedisClientInfo.INFO FILE_DESCRIPTOR

CONNECTION_NAME

public static final RedisClientInfo.INFO CONNECTION_NAME

CONNECTION_AGE

public static final RedisClientInfo.INFO CONNECTION_AGE

CONNECTION_IDLE

public static final RedisClientInfo.INFO CONNECTION_IDLE

FLAGS

public static final RedisClientInfo.INFO FLAGS

DATABSE_ID

public static final RedisClientInfo.INFO DATABSE_ID

CHANNEL_SUBSCRIBTIONS

public static final RedisClientInfo.INFO CHANNEL_SUBSCRIBTIONS

PATTERN_SUBSCRIBTIONS

public static final RedisClientInfo.INFO PATTERN_SUBSCRIBTIONS

MULIT_COMMAND_CONTEXT

public static final RedisClientInfo.INFO MULIT_COMMAND_CONTEXT

BUFFER_LENGTH

public static final RedisClientInfo.INFO BUFFER_LENGTH

BUFFER_FREE_SPACE

public static final RedisClientInfo.INFO BUFFER_FREE_SPACE

OUTPUT_BUFFER_LENGTH

public static final RedisClientInfo.INFO OUTPUT_BUFFER_LENGTH

OUTPUT_LIST_LENGTH

public static final RedisClientInfo.INFO OUTPUT_LIST_LENGTH

OUTPUT_BUFFER_MEMORY_USAGE

public static final RedisClientInfo.INFO OUTPUT_BUFFER_MEMORY_USAGE

EVENTS

public static final RedisClientInfo.INFO EVENTS

LAST_COMMAND

public static final RedisClientInfo.INFO LAST_COMMAND
Method Detail

values

public static RedisClientInfo.INFO[] 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 (RedisClientInfo.INFO c : RedisClientInfo.INFO.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RedisClientInfo.INFO 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