public enum CacheCommand extends Enum<CacheCommand>
| Enum Constant and Description |
|---|
CONTENTION
Prints info about contended keys (the keys concurrently locked from multiple transactions).
|
HELP
Prints out help for the cache command.
|
IDLE_VERIFY
Checks consistency of primary and backup partitions assuming no concurrent updates are happening in the cluster.
|
LIST
Prints info regarding caches, groups or sequences.
|
VALIDATE_INDEXES
Validates indexes attempting to read each indexed entry.
|
| Modifier and Type | Method and Description |
|---|---|
static CacheCommand |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static CacheCommand |
of(String text) |
String |
text() |
static CacheCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheCommand HELP
public static final CacheCommand IDLE_VERIFY
public static final CacheCommand LIST
public static final CacheCommand VALIDATE_INDEXES
public static final CacheCommand CONTENTION
public static CacheCommand[] values()
for (CacheCommand c : CacheCommand.values()) System.out.println(c);
public static CacheCommand 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 nullpublic static CacheCommand of(String text)
text - Command text.public String text()
@Nullable public static CacheCommand fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.
Follow @ApacheIgnite
Ignite Fabric : ver. 2.5.0 Release Date : May 23 2018