@InterfaceAudience.Private enum FlushType extends Enum<FlushType>
MemStoreFlusher,
FlushRequester| Enum Constant and Description |
|---|
ABOVE_OFFHEAP_HIGHER_MARK |
ABOVE_OFFHEAP_LOWER_MARK |
ABOVE_ONHEAP_HIGHER_MARK |
ABOVE_ONHEAP_LOWER_MARK |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static FlushType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlushType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlushType ABOVE_ONHEAP_LOWER_MARK
public static final FlushType ABOVE_ONHEAP_HIGHER_MARK
public static final FlushType ABOVE_OFFHEAP_LOWER_MARK
public static final FlushType ABOVE_OFFHEAP_HIGHER_MARK
public static FlushType[] values()
for (FlushType c : FlushType.values()) System.out.println(c);
public static FlushType 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 © 2007–2019 The Apache Software Foundation. All rights reserved.