public enum MaintenanceType extends Enum<MaintenanceType>
Enum Constant and Description |
---|
COMPACT |
INTEGRITY_CHECK |
REINDEX
Use only in collaboration with Couchbase Support
|
Modifier and Type | Method and Description |
---|---|
static MaintenanceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MaintenanceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Volatile public static final MaintenanceType REINDEX
public static final MaintenanceType COMPACT
public static final MaintenanceType INTEGRITY_CHECK
public static MaintenanceType[] values()
for (MaintenanceType c : MaintenanceType.values()) System.out.println(c);
public static MaintenanceType 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 null