public static enum CompactionParams.TombstoneOption extends java.lang.Enum<CompactionParams.TombstoneOption>
Modifier and Type | Method and Description |
---|---|
static java.util.Optional<CompactionParams.TombstoneOption> |
forName(java.lang.String name) |
static CompactionParams.TombstoneOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompactionParams.TombstoneOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompactionParams.TombstoneOption NONE
public static final CompactionParams.TombstoneOption ROW
public static final CompactionParams.TombstoneOption CELL
public static CompactionParams.TombstoneOption[] values()
for (CompactionParams.TombstoneOption c : CompactionParams.TombstoneOption.values()) System.out.println(c);
public static CompactionParams.TombstoneOption 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 java.util.Optional<CompactionParams.TombstoneOption> forName(java.lang.String name)
Copyright © 2009-2021 The Apache Software Foundation