public enum RemovalStrategy extends java.lang.Enum<RemovalStrategy>
RegionIndex.| Enum Constant and Description |
|---|
REMOVE_CHILDREN
Remove any children under the removed regions.
|
UNSET_PARENT_IN_CHILDREN
Unset the parent in children regions.
|
| Modifier and Type | Method and Description |
|---|---|
static RemovalStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemovalStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemovalStrategy UNSET_PARENT_IN_CHILDREN
public static final RemovalStrategy REMOVE_CHILDREN
public static RemovalStrategy[] values()
for (RemovalStrategy c : RemovalStrategy.values()) System.out.println(c);
public static RemovalStrategy 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 null