Package org.rocksdb
Enum MutableColumnFamilyOptions.BlobOption
- java.lang.Object
-
- java.lang.Enum<MutableColumnFamilyOptions.BlobOption>
-
- org.rocksdb.MutableColumnFamilyOptions.BlobOption
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MutableColumnFamilyOptions.BlobOption>,MutableOptionKey
- Enclosing class:
- MutableColumnFamilyOptions
public static enum MutableColumnFamilyOptions.BlobOption extends java.lang.Enum<MutableColumnFamilyOptions.BlobOption>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.rocksdb.MutableOptionKey
MutableOptionKey.ValueType
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableOptionKey.ValueTypegetValueType()static MutableColumnFamilyOptions.BlobOptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MutableColumnFamilyOptions.BlobOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.rocksdb.MutableOptionKey
name
-
-
-
-
Enum Constant Detail
-
enable_blob_files
public static final MutableColumnFamilyOptions.BlobOption enable_blob_files
-
min_blob_size
public static final MutableColumnFamilyOptions.BlobOption min_blob_size
-
blob_file_size
public static final MutableColumnFamilyOptions.BlobOption blob_file_size
-
blob_compression_type
public static final MutableColumnFamilyOptions.BlobOption blob_compression_type
-
enable_blob_garbage_collection
public static final MutableColumnFamilyOptions.BlobOption enable_blob_garbage_collection
-
blob_garbage_collection_age_cutoff
public static final MutableColumnFamilyOptions.BlobOption blob_garbage_collection_age_cutoff
-
blob_garbage_collection_force_threshold
public static final MutableColumnFamilyOptions.BlobOption blob_garbage_collection_force_threshold
-
blob_compaction_readahead_size
public static final MutableColumnFamilyOptions.BlobOption blob_compaction_readahead_size
-
blob_file_starting_level
public static final MutableColumnFamilyOptions.BlobOption blob_file_starting_level
-
prepopulate_blob_cache
public static final MutableColumnFamilyOptions.BlobOption prepopulate_blob_cache
-
-
Method Detail
-
values
public static MutableColumnFamilyOptions.BlobOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MutableColumnFamilyOptions.BlobOption c : MutableColumnFamilyOptions.BlobOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MutableColumnFamilyOptions.BlobOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValueType
public MutableOptionKey.ValueType getValueType()
- Specified by:
getValueTypein interfaceMutableOptionKey
-
-