public enum CompactionStyle extends Enum<CompactionStyle>
RocksDB.compactFiles(CompactionOptions, ColumnFamilyHandle, List, int, int, CompactionJobInfo) ()}.| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
Get the internal representation value.
|
static CompactionStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompactionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompactionStyle LEVEL
public static final CompactionStyle UNIVERSAL
public static final CompactionStyle FIFO
public static final CompactionStyle NONE
public static CompactionStyle[] values()
for (CompactionStyle c : CompactionStyle.values()) System.out.println(c);
public static CompactionStyle 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 nullpublic byte getValue()
Copyright © 2022. All rights reserved.