[RocksJava] Integrated changes in D29025
Addressed review comments.
This commit is contained in:
parent
5249d0db50
commit
91ccc8ebef
@ -31,17 +31,6 @@ public class ColumnFamilyOptions extends RocksObject
|
||||
newColumnFamilyOptions();
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Private constructor to be used by
|
||||
* {@link #getColumnFamilyOptionsFromProps(java.util.Properties)}</p>
|
||||
*
|
||||
* @param handle native handle to ColumnFamilyOptions instance.
|
||||
*/
|
||||
private ColumnFamilyOptions(long handle) {
|
||||
super();
|
||||
nativeHandle_ = handle;
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Method to get a options instance by using pre-configured
|
||||
* property values. If one or many values are undefined in
|
||||
@ -576,6 +565,17 @@ public class ColumnFamilyOptions extends RocksObject
|
||||
disposeInternal(nativeHandle_);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Private constructor to be used by
|
||||
* {@link #getColumnFamilyOptionsFromProps(java.util.Properties)}</p>
|
||||
*
|
||||
* @param handle native handle to ColumnFamilyOptions instance.
|
||||
*/
|
||||
private ColumnFamilyOptions(long handle) {
|
||||
super();
|
||||
nativeHandle_ = handle;
|
||||
}
|
||||
|
||||
private static native long getColumnFamilyOptionsFromProps(
|
||||
String optString);
|
||||
|
||||
|
@ -31,17 +31,6 @@ public class DBOptions extends RocksObject implements DBOptionsInterface {
|
||||
newDBOptions();
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Private constructor to be used by
|
||||
* {@link #getDBOptionsFromProps(java.util.Properties)}</p>
|
||||
*
|
||||
* @param handle native handle to DBOptions instance.
|
||||
*/
|
||||
private DBOptions(long handle) {
|
||||
super();
|
||||
nativeHandle_ = handle;
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Method to get a options instance by using pre-configured
|
||||
* property values. If one or many values are undefined in
|
||||
@ -541,6 +530,17 @@ public class DBOptions extends RocksObject implements DBOptionsInterface {
|
||||
|
||||
static final int DEFAULT_NUM_SHARD_BITS = -1;
|
||||
|
||||
/**
|
||||
* <p>Private constructor to be used by
|
||||
* {@link #getDBOptionsFromProps(java.util.Properties)}</p>
|
||||
*
|
||||
* @param handle native handle to DBOptions instance.
|
||||
*/
|
||||
private DBOptions(long handle) {
|
||||
super();
|
||||
nativeHandle_ = handle;
|
||||
}
|
||||
|
||||
private static native long getDBOptionsFromProps(
|
||||
String optString);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user