Package org.redisson.api.redisnode
Enum RedisNode.InfoSection
- java.lang.Object
-
- java.lang.Enum<RedisNode.InfoSection>
-
- org.redisson.api.redisnode.RedisNode.InfoSection
-
- All Implemented Interfaces:
Serializable
,Comparable<RedisNode.InfoSection>
- Enclosing interface:
- RedisNode
public static enum RedisNode.InfoSection extends Enum<RedisNode.InfoSection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
CLIENTS
CLUSTER
COMMANDSTATS
CPU
DEFAULT
KEYSPACE
MEMORY
PERSISTENCE
REPLICATION
SERVER
STATS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RedisNode.InfoSection
valueOf(String name)
Returns the enum constant of this type with the specified name.static RedisNode.InfoSection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final RedisNode.InfoSection ALL
-
DEFAULT
public static final RedisNode.InfoSection DEFAULT
-
SERVER
public static final RedisNode.InfoSection SERVER
-
CLIENTS
public static final RedisNode.InfoSection CLIENTS
-
MEMORY
public static final RedisNode.InfoSection MEMORY
-
PERSISTENCE
public static final RedisNode.InfoSection PERSISTENCE
-
STATS
public static final RedisNode.InfoSection STATS
-
REPLICATION
public static final RedisNode.InfoSection REPLICATION
-
CPU
public static final RedisNode.InfoSection CPU
-
COMMANDSTATS
public static final RedisNode.InfoSection COMMANDSTATS
-
CLUSTER
public static final RedisNode.InfoSection CLUSTER
-
KEYSPACE
public static final RedisNode.InfoSection KEYSPACE
-
-
Method Detail
-
values
public static RedisNode.InfoSection[] 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 (RedisNode.InfoSection c : RedisNode.InfoSection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RedisNode.InfoSection 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
-
-