| Package | Description |
|---|---|
| org.jsimpledb |
Abstraction layer allowing access to a
Database using normal Java objects. |
| Modifier and Type | Method and Description |
|---|---|
ValidationMode |
Session.getValidationMode()
Get the
ValidationMode associated with this instance. |
ValidationMode |
JTransaction.getValidationMode()
Get the
ValidationMode configured for this instance. |
static ValidationMode |
ValidationMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationMode[] |
ValidationMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
SnapshotJTransaction |
JSimpleDB.createSnapshotTransaction(KVStore kvstore,
boolean allowNewSchema,
ValidationMode validationMode)
Create a new
SnapshotJTransaction based on the provided key/value store. |
SnapshotJTransaction |
JTransaction.createSnapshotTransaction(ValidationMode validationMode)
Create an empty snapshot transaction based on this instance.
|
SnapshotJTransaction |
JSimpleDB.createSnapshotTransaction(ValidationMode validationMode)
Create a new, empty
SnapshotJTransaction backed by a NavigableMapKVStore. |
JTransaction |
JSimpleDB.createTransaction(boolean allowNewSchema,
ValidationMode validationMode)
Create a new transaction.
|
JTransaction |
JSimpleDB.createTransaction(boolean allowNewSchema,
ValidationMode validationMode,
Map<String,?> kvoptions)
Create a new transaction with key/value transaction options.
|
JTransaction |
JSimpleDB.createTransaction(KVTransaction kvt,
boolean allowNewSchema,
ValidationMode validationMode)
Create a new transaction using an already-opened
KVTransaction. |
void |
Session.setValidationMode(ValidationMode validationMode) |
Copyright © 2017. All rights reserved.