public static enum ServerOpConfig.ServerOpScope extends Enum<ServerOpConfig.ServerOpScope>
Enum Constant and Description |
---|
MAJOR_COMPACTION |
MINOR_COMPACTION |
SCAN |
Modifier and Type | Method and Description |
---|---|
static ServerOpConfig.ServerOpScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerOpConfig.ServerOpScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerOpConfig.ServerOpScope MAJOR_COMPACTION
public static final ServerOpConfig.ServerOpScope MINOR_COMPACTION
public static final ServerOpConfig.ServerOpScope SCAN
public static ServerOpConfig.ServerOpScope[] values()
for (ServerOpConfig.ServerOpScope c : ServerOpConfig.ServerOpScope.values()) System.out.println(c);
public static ServerOpConfig.ServerOpScope 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 © 2013–2022. All rights reserved.