Package org.rocksdb
Enum MutableColumnFamilyOptions.MiscOption
- java.lang.Object
-
- java.lang.Enum<MutableColumnFamilyOptions.MiscOption>
-
- org.rocksdb.MutableColumnFamilyOptions.MiscOption
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MutableColumnFamilyOptions.MiscOption>,MutableOptionKey
- Enclosing class:
- MutableColumnFamilyOptions
public static enum MutableColumnFamilyOptions.MiscOption extends java.lang.Enum<MutableColumnFamilyOptions.MiscOption>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.rocksdb.MutableOptionKey
MutableOptionKey.ValueType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description compression_typemax_sequential_skip_in_iterationsparanoid_file_checksreport_bg_io_stats
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableOptionKey.ValueTypegetValueType()static MutableColumnFamilyOptions.MiscOptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MutableColumnFamilyOptions.MiscOption[]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
-
max_sequential_skip_in_iterations
public static final MutableColumnFamilyOptions.MiscOption max_sequential_skip_in_iterations
-
paranoid_file_checks
public static final MutableColumnFamilyOptions.MiscOption paranoid_file_checks
-
report_bg_io_stats
public static final MutableColumnFamilyOptions.MiscOption report_bg_io_stats
-
compression_type
public static final MutableColumnFamilyOptions.MiscOption compression_type
-
-
Method Detail
-
values
public static MutableColumnFamilyOptions.MiscOption[] 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.MiscOption c : MutableColumnFamilyOptions.MiscOption.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.MiscOption 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
-
-