public static enum Node.InfoSection extends Enum<Node.InfoSection>
Enum Constant and Description |
---|
ALL |
CLIENTS |
CLUSTER |
COMMANDSTATS |
CPU |
DEFAULT |
KEYSPACE |
MEMORY |
PERSISTENCE |
REPLICATION |
SERVER |
STATS |
Modifier and Type | Method and 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.
|
public static final Node.InfoSection ALL
public static final Node.InfoSection DEFAULT
public static final Node.InfoSection SERVER
public static final Node.InfoSection CLIENTS
public static final Node.InfoSection MEMORY
public static final Node.InfoSection PERSISTENCE
public static final Node.InfoSection STATS
public static final Node.InfoSection REPLICATION
public static final Node.InfoSection CPU
public static final Node.InfoSection COMMANDSTATS
public static final Node.InfoSection CLUSTER
public static final Node.InfoSection KEYSPACE
public static Node.InfoSection[] values()
for (Node.InfoSection c : Node.InfoSection.values()) System.out.println(c);
public static Node.InfoSection valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014–2018 The Redisson Project. All rights reserved.