Searched refs:MutableOptionValue (Results 1 – 3 of 3) sorted by relevance
102 options.put(key, MutableOptionValue.fromDouble(value)); in setDouble()108 final MutableOptionValue<?> value = options.get(key); in getDouble()121 options.put(key, MutableOptionValue.fromLong(value)); in setLong()127 final MutableOptionValue<?> value = options.get(key); in getLong()140 options.put(key, MutableOptionValue.fromInt(value)); in setInt()146 final MutableOptionValue<?> value = options.get(key); in getInt()159 options.put(key, MutableOptionValue.fromBoolean(value)); in setBoolean()165 final MutableOptionValue<?> value = options.get(key); in getBoolean()184 final MutableOptionValue<?> value = options.get(key); in getIntArray()197 options.put(key, MutableOptionValue.fromEnum(value)); in setEnum()[all …]
6 public abstract class MutableOptionValue<T> { class17 extends MutableOptionValue<T> {29 static MutableOptionValue<String> fromString(final String s) { in fromString()33 static MutableOptionValue<Double> fromDouble(final double d) { in fromDouble()37 static MutableOptionValue<Long> fromLong(final long d) { in fromLong()41 static MutableOptionValue<Integer> fromInt(final int i) { in fromInt()49 static MutableOptionValue<int[]> fromIntArray(final int[] ix) { in fromIntArray()95 extends MutableOptionValue<Double> {147 extends MutableOptionValue<Long> {204 extends MutableOptionValue<Integer> {[all …]
165 src/main/java/org/rocksdb/MutableOptionValue.java