public enum StreamOperation extends java.lang.Enum<StreamOperation>
Enum Constant and Description |
---|
BOOTSTRAP |
BULK_LOAD |
DECOMMISSION |
OTHER |
REBUILD |
RELOCATION |
REPAIR |
RESTORE_REPLICA_COUNT |
Modifier and Type | Method and Description |
---|---|
static StreamOperation |
fromString(java.lang.String text) |
java.lang.String |
getDescription() |
boolean |
requiresViewBuild()
Wether this operation requires views to be updated
|
static StreamOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StreamOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamOperation OTHER
public static final StreamOperation RESTORE_REPLICA_COUNT
public static final StreamOperation DECOMMISSION
public static final StreamOperation RELOCATION
public static final StreamOperation BOOTSTRAP
public static final StreamOperation REBUILD
public static final StreamOperation BULK_LOAD
public static final StreamOperation REPAIR
public static StreamOperation[] values()
for (StreamOperation c : StreamOperation.values()) System.out.println(c);
public static StreamOperation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static StreamOperation fromString(java.lang.String text)
public java.lang.String getDescription()
public boolean requiresViewBuild()
Copyright © 2009- The Apache Software Foundation