Package org.redisson.api
Enum Node.InfoSection
- java.lang.Object
-
- java.lang.Enum<Node.InfoSection>
-
- org.redisson.api.Node.InfoSection
-
- All Implemented Interfaces:
Serializable
,Comparable<Node.InfoSection>
- Enclosing interface:
- Node
public static enum Node.InfoSection extends Enum<Node.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 Node.InfoSection
valueOf(String name)
Returns the enum constant of this type with the specified name.static Node.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 Node.InfoSection ALL
-
DEFAULT
public static final Node.InfoSection DEFAULT
-
SERVER
public static final Node.InfoSection SERVER
-
CLIENTS
public static final Node.InfoSection CLIENTS
-
MEMORY
public static final Node.InfoSection MEMORY
-
PERSISTENCE
public static final Node.InfoSection PERSISTENCE
-
STATS
public static final Node.InfoSection STATS
-
REPLICATION
public static final Node.InfoSection REPLICATION
-
CPU
public static final Node.InfoSection CPU
-
COMMANDSTATS
public static final Node.InfoSection COMMANDSTATS
-
CLUSTER
public static final Node.InfoSection CLUSTER
-
KEYSPACE
public static final Node.InfoSection KEYSPACE
-
-
Method Detail
-
values
public static Node.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 (Node.InfoSection c : Node.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 Node.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
-
-