public static enum MemStoreCompactionStrategy.Action extends Enum<MemStoreCompactionStrategy.Action>
| Enum Constant and Description | 
|---|
| COMPACT | 
| FLATTEN | 
| FLATTEN_COUNT_UNIQUE_KEYS | 
| MERGE | 
| MERGE_COUNT_UNIQUE_KEYS | 
| NOOP | 
| Modifier and Type | Method and Description | 
|---|---|
| static MemStoreCompactionStrategy.Action | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MemStoreCompactionStrategy.Action[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MemStoreCompactionStrategy.Action NOOP
public static final MemStoreCompactionStrategy.Action FLATTEN
public static final MemStoreCompactionStrategy.Action FLATTEN_COUNT_UNIQUE_KEYS
public static final MemStoreCompactionStrategy.Action MERGE
public static final MemStoreCompactionStrategy.Action MERGE_COUNT_UNIQUE_KEYS
public static final MemStoreCompactionStrategy.Action COMPACT
public static MemStoreCompactionStrategy.Action[] values()
for (MemStoreCompactionStrategy.Action c : MemStoreCompactionStrategy.Action.values()) System.out.println(c);
public static MemStoreCompactionStrategy.Action 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–2021 The Apache Software Foundation. All rights reserved.