Package org.rocksdb
Class MutableColumnFamilyOptions
java.lang.Object
org.rocksdb.AbstractMutableOptions
org.rocksdb.MutableColumnFamilyOptions
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumstatic enumstatic enumstatic enumstatic classNested classes/interfaces inherited from class org.rocksdb.AbstractMutableOptions
AbstractMutableOptions.AbstractMutableOptionsBuilder<T extends AbstractMutableOptions,U extends AbstractMutableOptions.AbstractMutableOptionsBuilder<T, U, K>, K extends MutableOptionKey> -
Field Summary
Fields inherited from class org.rocksdb.AbstractMutableOptions
KEY_VALUE_PAIR_SEPARATOR, KEY_VALUE_SEPARATOR, keys -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder which allows you to set MutableColumnFamilyOptions in a fluent mannerParses a String representation of MutableColumnFamilyOptionsMethods inherited from class org.rocksdb.AbstractMutableOptions
toString
-
Method Details
-
builder
Creates a builder which allows you to set MutableColumnFamilyOptions in a fluent manner- Returns:
- A builder for MutableColumnFamilyOptions
-
parse
public static MutableColumnFamilyOptions.MutableColumnFamilyOptionsBuilder parse(String str, boolean ignoreUnknown) Parses a String representation of MutableColumnFamilyOptionsThe format is: key1=value1;key2=value2;key3=value3 etc
For int[] values, each int should be separated by a colon, e.g.
key1=value1;intArrayKey1=1:2:3
- Parameters:
str- The string representation of the mutable column family optionsignoreUnknown- what to do if the key is not one of the keys we expect- Returns:
- A builder for the mutable column family options
-
parse
-