Package | Description |
---|---|
org.ojai | |
org.ojai.beans | |
org.ojai.json | |
org.ojai.store | |
org.ojai.util |
Modifier and Type | Method and Description |
---|---|
DocumentBuilder |
DocumentBuilder.add(BigDecimal value)
Adds a
BigDecimal value at the current index in the current array
and advances the current index by 1. |
DocumentBuilder |
DocumentBuilder.add(byte[] value)
Appends the byte array as a
BINARY value to the current array. |
DocumentBuilder |
DocumentBuilder.add(byte[] value,
int offset,
int length)
Appends the byte array bounded by offset and length as a
BINARY
value to the current array. |
DocumentBuilder |
DocumentBuilder.add(ByteBuffer value)
Appends the
ByteBuffer as a BINARY value to the current array. |
DocumentBuilder |
DocumentBuilder.add(Document value)
Appends the
Document to the current array. |
DocumentBuilder |
DocumentBuilder.add(ODate value) |
DocumentBuilder |
DocumentBuilder.add(OInterval value) |
DocumentBuilder |
DocumentBuilder.add(OTime value) |
DocumentBuilder |
DocumentBuilder.add(OTimestamp value) |
DocumentBuilder |
DocumentBuilder.add(String value)
Adds a
String value at the current index in the current array and
advances the current index by 1. |
DocumentBuilder |
DocumentBuilder.add(Value value)
Appends the
Value to the current array. |
DocumentBuilder |
DocumentBuilder.addDecimal(byte[] unscaledValue,
int scale)
Adds a byte array containing the two's complement binary representation
and an
int scale as a DECIMAL value at the current index
in the current array and advances the current index by 1. |
default String |
JsonString.asJsonString(JsonOptions options) |
DocumentReader |
Document.asReader(FieldPath fieldPath) |
DocumentReader |
Document.asReader(String fieldPath) |
QueryCondition |
OjaiCodec.decodeCondition(T encodedCondition)
Decodes an instance of <T> into an OJAI
QueryCondition |
Document |
OjaiCodec.decodeDocument(T encodedDocument)
Decodes an instance of <T> into an OJAI
Document |
DocumentMutation |
OjaiCodec.decodeMutation(T encodedMutation)
Decodes an instance of <T> into an OJAI
DocumentMutation |
Query |
OjaiCodec.decodeQuery(T encodedQuery,
Document options)
Decodes an instance of <T> into an OJAI
Query |
Document |
Document.delete(FieldPath fieldPath)
Deletes the value at the specified
FieldPath if it exists. |
Document |
Document.delete(String fieldPath)
Deletes the value at the specified
FieldPath if it exists. |
boolean |
DocumentListener.documentArrived(Document document)
Called when a Document from the
DocumentStream is available for
consumption. |
T |
OjaiCodec.encodeCondition(QueryCondition condition)
Encodes an OJAI
QueryCondition into an instance of <T> |
T |
OjaiCodec.encodeDocument(Document document)
Encodes an OJAI
Document into an instance of <T> |
T |
OjaiCodec.encodeMutation(DocumentMutation mutation)
Encodes an OJAI
DocumentMutation into an instance of <T> |
T |
OjaiCodec.encodeQuery(Query query)
Encodes an OJAI
Query into an instance of <T> |
void |
DocumentListener.failed(Exception e)
Called when an
Exception occurs while retrieving a Document. |
ByteBuffer |
Document.getBinary(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
ByteBuffer
object or null if the specified FieldPath does not
exist in the document. |
ByteBuffer |
Document.getBinary(String fieldPath)
Returns the value at the specified fieldPath as a
ByteBuffer
object or null if the specified FieldPath does not
exist in the document. |
boolean |
Document.getBoolean(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
boolean . |
boolean |
Document.getBoolean(String fieldPath)
Returns the value at the specified fieldPath as a
boolean . |
Boolean |
Document.getBooleanObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Boolean
object or null if the specified FieldPath does
not exist in the document. |
Boolean |
Document.getBooleanObj(String fieldPath)
Returns the value at the specified fieldPath as a
Boolean
object or null if the specified FieldPath does
not exist in the document. |
byte |
Document.getByte(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
byte . |
byte |
Document.getByte(String fieldPath)
Returns the value at the specified fieldPath as a
byte . |
Byte |
Document.getByteObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Byte
object or null if the specified FieldPath does
not exist in the document. |
Byte |
Document.getByteObj(String fieldPath)
Returns the value at the specified fieldPath as a
Byte
object or null if the specified FieldPath does
not exist in the document. |
ODate |
Document.getDate(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
ODate
object or null if the specified FieldPath does not
exist in the document. |
ODate |
Document.getDate(String fieldPath)
Returns the value at the specified fieldPath as a
ODate
object or null if the specified FieldPath does not
exist in the document. |
BigDecimal |
Document.getDecimal(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
BigDecimal
object or null if the specified FieldPath does not
exist in the document. |
BigDecimal |
Document.getDecimal(String fieldPath)
Returns the value at the specified fieldPath as a
BigDecimal
object or null if the specified FieldPath does not
exist in the document. |
double |
Document.getDouble(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
double . |
double |
Document.getDouble(String fieldPath)
Returns the value at the specified fieldPath as a
double . |
Double |
Document.getDoubleObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Double
object or null if the specified FieldPath does
not exist in the document. |
Double |
Document.getDoubleObj(String fieldPath)
Returns the value at the specified fieldPath as a
Double
object or null if the specified FieldPath does
not exist in the document. |
float |
Document.getFloat(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
float . |
float |
Document.getFloat(String fieldPath)
Returns the value at the specified fieldPath as a
float . |
Float |
Document.getFloatObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Float
object or null if the specified FieldPath does
not exist in the document. |
Float |
Document.getFloatObj(String fieldPath)
Returns the value at the specified fieldPath as a
Float
object or null if the specified FieldPath does
not exist in the document. |
int |
Document.getInt(FieldPath fieldPath)
Returns the value at the specified fieldPath as an
int . |
int |
Document.getInt(String fieldPath)
Returns the value at the specified fieldPath as an
int . |
OInterval |
Document.getInterval(FieldPath fieldPath)
Returns the value at the specified fieldPath as an
OInterval
object or null if the specified FieldPath does not
exist in the document. |
OInterval |
Document.getInterval(String fieldPath)
Returns the value at the specified fieldPath as an
OInterval
object or null if the specified FieldPath does not
exist in the document. |
Integer |
Document.getIntObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as an
Integer
object or null if the specified FieldPath does
not exist in the document. |
Integer |
Document.getIntObj(String fieldPath)
Returns the value at the specified fieldPath as an
Integer
object or null if the specified FieldPath does
not exist in the document. |
List<Object> |
Document.getList(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
List
object or null if the specified FieldPath does not
exist in the document. |
List<Object> |
Document.getList(String fieldPath)
Returns the value at the specified fieldPath as a
List
object or null if the specified FieldPath does not
exist in the document. |
long |
Document.getLong(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
long . |
long |
Document.getLong(String fieldPath)
Returns the value at the specified fieldPath as a
long . |
Long |
Document.getLongObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Long
object or null if the specified FieldPath does
not exist in the document. |
Long |
Document.getLongObj(String fieldPath)
Returns the value at the specified fieldPath as a
Long
object or null if the specified FieldPath does
not exist in the document. |
Map<String,Object> |
Document.getMap(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Map
object or null if the specified FieldPath does not
exist in the document. |
Map<String,Object> |
Document.getMap(String fieldPath)
Returns the value at the specified fieldPath as a
Map
object or null if the specified FieldPath does not
exist in the document. |
short |
Document.getShort(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
short . |
short |
Document.getShort(String fieldPath)
Returns the value at the specified fieldPath as a
short . |
Short |
Document.getShortObj(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Short
object or null if the specified FieldPath does
not exist in the document. |
Short |
Document.getShortObj(String fieldPath)
Returns the value at the specified fieldPath as a
Short
object or null if the specified FieldPath does
not exist in the document. |
String |
Document.getString(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
String
object or null if the specified FieldPath does
not exist in the document. |
String |
Document.getString(String fieldPath)
Returns the value at the specified fieldPath as a
String
object or null if the specified FieldPath does
not exist in the document. |
OTime |
Document.getTime(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
OTime
object or null if the specified FieldPath does not
exist in the document. |
OTime |
Document.getTime(String fieldPath)
Returns the value at the specified fieldPath as a
OTime
object or null if the specified FieldPath does not
exist in the document. |
OTimestamp |
Document.getTimestamp(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
OTimestamp
object or null if the specified FieldPath does not
exist in the document. |
OTimestamp |
Document.getTimestamp(String fieldPath)
Returns the value at the specified fieldPath as a
OTimestamp
object or null if the specified FieldPath does not
exist in the document. |
Value |
Document.getValue(FieldPath fieldPath)
Returns the value at the specified fieldPath as a
Value
object or null if the specified FieldPath does not
exist in the document. |
Value |
Document.getValue(String fieldPath)
Returns the value at the specified fieldPath as a
Value
object or null if the specified FieldPath does not
exist in the document. |
static FieldPath |
FieldPath.parseFrom(String fieldPath)
Use this method to translate a
String into FieldPath . |
DocumentBuilder |
DocumentBuilder.put(String field,
BigDecimal value) |
DocumentBuilder |
DocumentBuilder.put(String field,
BigDecimal value) |
DocumentBuilder |
DocumentBuilder.put(String field,
boolean value)
Associates the specified
boolean value with the specified
field in the current map. |
DocumentBuilder |
DocumentBuilder.put(String field,
byte value) |
DocumentBuilder |
DocumentBuilder.put(String field,
byte[] value) |
DocumentBuilder |
DocumentBuilder.put(String field,
byte[] value) |
DocumentBuilder |
DocumentBuilder.put(String field,
byte[] value,
int offset,
int length) |
DocumentBuilder |
DocumentBuilder.put(String field,
byte[] value,
int offset,
int length) |
DocumentBuilder |
DocumentBuilder.put(String field,
ByteBuffer value) |
DocumentBuilder |
DocumentBuilder.put(String field,
ByteBuffer value) |
DocumentBuilder |
DocumentBuilder.put(String field,
Document value) |
DocumentBuilder |
DocumentBuilder.put(String field,
Document value) |
DocumentBuilder |
DocumentBuilder.put(String field,
double value) |
DocumentBuilder |
DocumentBuilder.put(String field,
float value) |
DocumentBuilder |
DocumentBuilder.put(String field,
int value) |
DocumentBuilder |
DocumentBuilder.put(String field,
long value) |
DocumentBuilder |
DocumentBuilder.put(String field,
Map<String,Object> value) |
DocumentBuilder |
DocumentBuilder.put(String field,
Map<String,Object> value) |
DocumentBuilder |
DocumentBuilder.put(String field,
ODate value) |
DocumentBuilder |
DocumentBuilder.put(String field,
ODate value) |
DocumentBuilder |
DocumentBuilder.put(String field,
OInterval value) |
DocumentBuilder |
DocumentBuilder.put(String field,
OInterval value) |
DocumentBuilder |
DocumentBuilder.put(String field,
OTime value) |
DocumentBuilder |
DocumentBuilder.put(String field,
OTime value) |
DocumentBuilder |
DocumentBuilder.put(String field,
OTimestamp value) |
DocumentBuilder |
DocumentBuilder.put(String field,
OTimestamp value) |
DocumentBuilder |
DocumentBuilder.put(String field,
short value) |
DocumentBuilder |
DocumentBuilder.put(String field,
String value)
Associates the specified
String value with the specified
field in the current map. |
DocumentBuilder |
DocumentBuilder.put(String field,
String value)
Associates the specified
String value with the specified
field in the current map. |
DocumentBuilder |
DocumentBuilder.put(String field,
Value value) |
DocumentBuilder |
DocumentBuilder.put(String field,
Value value) |
DocumentBuilder |
DocumentBuilder.putDate(String field,
int days)
Associates the specified
date value represented as the number
of days since epoch with the specified field in the
current map. |
DocumentBuilder |
DocumentBuilder.putDecimal(String field,
byte[] unscaledValue,
int scale) |
DocumentBuilder |
DocumentBuilder.putDecimal(String field,
byte[] unscaledValue,
int scale) |
DocumentBuilder |
DocumentBuilder.putDecimal(String field,
double decimalValue) |
DocumentBuilder |
DocumentBuilder.putDecimal(String field,
int unscaledValue,
int scale) |
DocumentBuilder |
DocumentBuilder.putDecimal(String field,
long decimalValue) |
DocumentBuilder |
DocumentBuilder.putDecimal(String field,
long unscaledValue,
int scale) |
DocumentBuilder |
DocumentBuilder.putInterval(String field,
int months,
int days,
int milliseconds) |
DocumentBuilder |
DocumentBuilder.putInterval(String field,
long durationInMs) |
DocumentBuilder |
DocumentBuilder.putNewArray(String field) |
DocumentBuilder |
DocumentBuilder.putNewMap(String field) |
DocumentBuilder |
DocumentBuilder.putNull(String field) |
DocumentBuilder |
DocumentBuilder.putTime(String field,
int millis)
Associates the specified
time value represented as number of
milliseconds since midnight with the specified field in the
current map. |
DocumentBuilder |
DocumentBuilder.putTimestamp(String field,
long timeMillis)
Associates the specified
timestamp value represented as the number
of milliseconds since epoch with the specified field in the
current map. |
Document |
Document.set(FieldPath fieldPath,
BigDecimal value)
Sets the value of the specified fieldPath in this Document to the
specified BigDecimal.
|
Document |
Document.set(FieldPath fieldPath,
BigDecimal value)
Sets the value of the specified fieldPath in this Document to the
specified BigDecimal.
|
Document |
Document.set(FieldPath fieldPath,
boolean value)
Sets the value of the specified fieldPath in this Document to the
specified boolean value.
|
Document |
Document.set(FieldPath fieldPath,
byte value)
Sets the value of the specified fieldPath in this Document to the
specified byte value.
|
Document |
Document.set(FieldPath fieldPath,
byte[] value)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(FieldPath fieldPath,
byte[] value)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(FieldPath fieldPath,
byte[] value,
int off,
int len)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(FieldPath fieldPath,
byte[] value,
int off,
int len)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(FieldPath fieldPath,
ByteBuffer value)
Sets the value of the specified fieldPath in this Document to the
specified ByteBuffer.
|
Document |
Document.set(FieldPath fieldPath,
ByteBuffer value)
Sets the value of the specified fieldPath in this Document to the
specified ByteBuffer.
|
Document |
Document.set(FieldPath fieldPath,
Document value)
Sets the value of the specified fieldPath in this Document to the
specified Document.
|
Document |
Document.set(FieldPath fieldPath,
Document value)
Sets the value of the specified fieldPath in this Document to the
specified Document.
|
Document |
Document.set(FieldPath fieldPath,
double value)
Sets the value of the specified fieldPath in this Document to the
specified double value.
|
Document |
Document.set(FieldPath fieldPath,
float value)
Sets the value of the specified fieldPath in this Document to the
specified float value.
|
Document |
Document.set(FieldPath fieldPath,
int value)
Sets the value of the specified fieldPath in this Document to the
specified int value.
|
Document |
Document.set(FieldPath fieldPath,
List<? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Object List.
|
Document |
Document.set(FieldPath fieldPath,
List<? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Object List.
|
Document |
Document.set(FieldPath fieldPath,
long value)
Sets the value of the specified fieldPath in this Document to the
specified long value.
|
Document |
Document.set(FieldPath fieldPath,
Map<String,? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Map.
|
Document |
Document.set(FieldPath fieldPath,
Map<String,? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Map.
|
Document |
Document.set(FieldPath fieldPath,
ODate value)
Sets the value of the specified fieldPath in this Document to the
specified Date.
|
Document |
Document.set(FieldPath fieldPath,
ODate value)
Sets the value of the specified fieldPath in this Document to the
specified Date.
|
Document |
Document.set(FieldPath fieldPath,
OInterval value)
Sets the value of the specified fieldPath in this Document to the
specified Interval.
|
Document |
Document.set(FieldPath fieldPath,
OInterval value)
Sets the value of the specified fieldPath in this Document to the
specified Interval.
|
Document |
Document.set(FieldPath fieldPath,
OTime value)
Sets the value of the specified fieldPath in this Document to the
specified Time.
|
Document |
Document.set(FieldPath fieldPath,
OTime value)
Sets the value of the specified fieldPath in this Document to the
specified Time.
|
Document |
Document.set(FieldPath fieldPath,
OTimestamp value)
Sets the value of the specified fieldPath in this Document to the
specified Timestamp.
|
Document |
Document.set(FieldPath fieldPath,
OTimestamp value)
Sets the value of the specified fieldPath in this Document to the
specified Timestamp.
|
Document |
Document.set(FieldPath fieldPath,
short value)
Sets the value of the specified fieldPath in this Document to the
specified short value.
|
Document |
Document.set(FieldPath fieldPath,
String value)
Sets the value of the specified fieldPath in this Document to the
specified String.
|
Document |
Document.set(FieldPath fieldPath,
String value)
Sets the value of the specified fieldPath in this Document to the
specified String.
|
Document |
Document.set(FieldPath fieldPath,
Value value)
Sets the value of the specified fieldPath in this Document to the
specified Value.
|
Document |
Document.set(FieldPath fieldPath,
Value value)
Sets the value of the specified fieldPath in this Document to the
specified Value.
|
Document |
Document.set(String fieldPath,
BigDecimal value)
Sets the value of the specified fieldPath in this Document to the
specified BigDecimal.
|
Document |
Document.set(String fieldPath,
BigDecimal value)
Sets the value of the specified fieldPath in this Document to the
specified BigDecimal.
|
Document |
Document.set(String fieldPath,
boolean value)
Sets the value of the specified fieldPath in this Document to the
specified boolean value.
|
Document |
Document.set(String fieldPath,
byte value)
Sets the value of the specified fieldPath in this Document to the
specified byte value.
|
Document |
Document.set(String fieldPath,
byte[] value)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(String fieldPath,
byte[] value)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(String fieldPath,
byte[] value,
int off,
int len)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(String fieldPath,
byte[] value,
int off,
int len)
Sets the value of the specified fieldPath in this Document to the
specified binary value.
|
Document |
Document.set(String fieldPath,
ByteBuffer value)
Sets the value of the specified fieldPath in this Document to the
specified ByteBuffer.
|
Document |
Document.set(String fieldPath,
ByteBuffer value)
Sets the value of the specified fieldPath in this Document to the
specified ByteBuffer.
|
Document |
Document.set(String fieldPath,
Document value)
Sets the value of the specified fieldPath in this Document to the
specified Document.
|
Document |
Document.set(String fieldPath,
Document value)
Sets the value of the specified fieldPath in this Document to the
specified Document.
|
Document |
Document.set(String fieldPath,
double value)
Sets the value of the specified fieldPath in this Document to the
specified double value.
|
Document |
Document.set(String fieldPath,
float value)
Sets the value of the specified fieldPath in this Document to the
specified float value.
|
Document |
Document.set(String fieldPath,
int value)
Sets the value of the specified fieldPath in this Document to the
specified int value.
|
Document |
Document.set(String fieldPath,
List<? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Object List.
|
Document |
Document.set(String fieldPath,
List<? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Object List.
|
Document |
Document.set(String fieldPath,
long value)
Sets the value of the specified fieldPath in this Document to the
specified long value.
|
Document |
Document.set(String fieldPath,
Map<String,? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Map.
|
Document |
Document.set(String fieldPath,
Map<String,? extends Object> value)
Sets the value of the specified fieldPath in this Document to the
specified Map.
|
Document |
Document.set(String fieldPath,
ODate value)
Sets the value of the specified fieldPath in this Document to the
specified Date.
|
Document |
Document.set(String fieldPath,
ODate value)
Sets the value of the specified fieldPath in this Document to the
specified Date.
|
Document |
Document.set(String fieldPath,
OInterval value)
Sets the value of the specified fieldPath in this Document to the
specified Interval.
|
Document |
Document.set(String fieldPath,
OInterval value)
Sets the value of the specified fieldPath in this Document to the
specified Interval.
|
Document |
Document.set(String fieldPath,
OTime value)
Sets the value of the specified fieldPath in this Document to the
specified Time.
|
Document |
Document.set(String fieldPath,
OTime value)
Sets the value of the specified fieldPath in this Document to the
specified Time.
|
Document |
Document.set(String fieldPath,
OTimestamp value)
Sets the value of the specified fieldPath in this Document to the
specified Timestamp.
|
Document |
Document.set(String fieldPath,
OTimestamp value)
Sets the value of the specified fieldPath in this Document to the
specified Timestamp.
|
Document |
Document.set(String fieldPath,
short value)
Sets the value of the specified fieldPath in this Document to the
specified short value.
|
Document |
Document.set(String fieldPath,
String value)
Sets the value of the specified fieldPath in this Document to the
specified String.
|
Document |
Document.set(String fieldPath,
String value)
Sets the value of the specified fieldPath in this Document to the
specified String.
|
Document |
Document.set(String fieldPath,
Value value)
Sets the value of the specified fieldPath in this Document to the
specified Value.
|
Document |
Document.set(String fieldPath,
Value value)
Sets the value of the specified fieldPath in this Document to the
specified Value.
|
Document |
Document.setArray(FieldPath fieldPath,
boolean[] values)
Sets the value of the specified fieldPath in this Document to the
specified boolean array.
|
Document |
Document.setArray(FieldPath fieldPath,
boolean[] values)
Sets the value of the specified fieldPath in this Document to the
specified boolean array.
|
Document |
Document.setArray(FieldPath fieldPath,
byte[] values)
Sets the value of the specified fieldPath in this Document to the
specified byte array.
|
Document |
Document.setArray(FieldPath fieldPath,
byte[] values)
Sets the value of the specified fieldPath in this Document to the
specified byte array.
|
Document |
Document.setArray(FieldPath fieldPath,
double[] values)
Sets the value of the specified fieldPath in this Document to the
specified double array.
|
Document |
Document.setArray(FieldPath fieldPath,
double[] values)
Sets the value of the specified fieldPath in this Document to the
specified double array.
|
Document |
Document.setArray(FieldPath fieldPath,
float[] values)
Sets the value of the specified fieldPath in this Document to the
specified float array.
|
Document |
Document.setArray(FieldPath fieldPath,
float[] values)
Sets the value of the specified fieldPath in this Document to the
specified float array.
|
Document |
Document.setArray(FieldPath fieldPath,
int[] values)
Sets the value of the specified fieldPath in this Document to the
specified int array.
|
Document |
Document.setArray(FieldPath fieldPath,
int[] values)
Sets the value of the specified fieldPath in this Document to the
specified int array.
|
Document |
Document.setArray(FieldPath fieldPath,
long[] values)
Sets the value of the specified fieldPath in this Document to the
specified long array.
|
Document |
Document.setArray(FieldPath fieldPath,
long[] values)
Sets the value of the specified fieldPath in this Document to the
specified long array.
|
Document |
Document.setArray(FieldPath fieldPath,
Object... values)
Sets the value of the specified fieldPath in this Document to the
specified Object array.
|
Document |
Document.setArray(FieldPath fieldPath,
Object... values)
Sets the value of the specified fieldPath in this Document to the
specified Object array.
|
Document |
Document.setArray(FieldPath fieldPath,
short[] values)
Sets the value of the specified fieldPath in this Document to the
specified short array.
|
Document |
Document.setArray(FieldPath fieldPath,
short[] values)
Sets the value of the specified fieldPath in this Document to the
specified short array.
|
Document |
Document.setArray(FieldPath fieldPath,
String[] values)
Sets the value of the specified fieldPath in this Document to the
specified String array.
|
Document |
Document.setArray(FieldPath fieldPath,
String[] values)
Sets the value of the specified fieldPath in this Document to the
specified String array.
|
Document |
Document.setArray(String fieldPath,
boolean[] values)
Sets the value of the specified fieldPath in this Document to the
specified boolean array.
|
Document |
Document.setArray(String fieldPath,
boolean[] values)
Sets the value of the specified fieldPath in this Document to the
specified boolean array.
|
Document |
Document.setArray(String fieldPath,
byte[] values)
Sets the value of the specified fieldPath in this Document to the
specified byte array.
|
Document |
Document.setArray(String fieldPath,
byte[] values)
Sets the value of the specified fieldPath in this Document to the
specified byte array.
|
Document |
Document.setArray(String fieldPath,
double[] values)
Sets the value of the specified fieldPath in this Document to the
specified double array.
|
Document |
Document.setArray(String fieldPath,
double[] values)
Sets the value of the specified fieldPath in this Document to the
specified double array.
|
Document |
Document.setArray(String fieldPath,
float[] values)
Sets the value of the specified fieldPath in this Document to the
specified float array.
|
Document |
Document.setArray(String fieldPath,
float[] values)
Sets the value of the specified fieldPath in this Document to the
specified float array.
|
Document |
Document.setArray(String fieldPath,
int[] values)
Sets the value of the specified fieldPath in this Document to the
specified int array.
|
Document |
Document.setArray(String fieldPath,
int[] values)
Sets the value of the specified fieldPath in this Document to the
specified int array.
|
Document |
Document.setArray(String fieldPath,
long[] values)
Sets the value of the specified fieldPath in this Document to the
specified long array.
|
Document |
Document.setArray(String fieldPath,
long[] values)
Sets the value of the specified fieldPath in this Document to the
specified long array.
|
Document |
Document.setArray(String fieldPath,
Object... values)
Sets the value of the specified fieldPath in this Document to the
specified Object array.
|
Document |
Document.setArray(String fieldPath,
Object... values)
Sets the value of the specified fieldPath in this Document to the
specified Object array.
|
Document |
Document.setArray(String fieldPath,
short[] values)
Sets the value of the specified fieldPath in this Document to the
specified short array.
|
Document |
Document.setArray(String fieldPath,
short[] values)
Sets the value of the specified fieldPath in this Document to the
specified short array.
|
Document |
Document.setArray(String fieldPath,
String[] values)
Sets the value of the specified fieldPath in this Document to the
specified String array.
|
Document |
Document.setArray(String fieldPath,
String[] values)
Sets the value of the specified fieldPath in this Document to the
specified String array.
|
Document |
Document.setId(ByteBuffer _id)
Sets the "_id" field of this Document to the specified string.
|
Document |
Document.setId(String _id)
Sets the the "_id" field of this Document to the specified string.
|
Document |
Document.setId(Value _id)
Sets the the "_id" field of this Document to the specified Value.
|
Document |
Document.setNull(FieldPath fieldPath)
Sets the value of the specified fieldPath in this Document to
Value.Type.NULL . |
Document |
Document.setNull(String fieldPath)
Sets the value of the specified fieldPath in this Document to
Value.Type.NULL . |
void |
DocumentStream.streamTo(DocumentListener listener)
Streams all the documents in this
DocumentStream to the specified
listener. |
<T> T |
Document.toJavaBean(Class<T> beanClass)
Converts this Document to an instance of the specified class.
|
Modifier and Type | Method and Description |
---|---|
static Document |
BeanCodec.decode(DocumentBuilder db,
Object bean) |
static <T> T |
BeanCodec.encode(DocumentReader dr,
Class<T> beanClass) |
Modifier and Type | Method and Description |
---|---|
boolean |
Events.Delegate.bor(DocumentReader reader,
Queue<Events.EventDescriptor> eventQueue) |
boolean |
Events.Delegate.bor(DocumentReader reader,
Queue<Events.EventDescriptor> eventQueue) |
static <T> T |
Json.encode(String jsonString,
Class<T> beanClass) |
static <T> T |
Json.encode(String jsonString,
Class<T> beanClass) |
boolean |
Events.Delegate.eor(DocumentReader reader,
Queue<Events.EventDescriptor> eventQueue) |
static <T> Document |
Json.newDocument(Map<String,T> map)
Returns a new instance of a Document built from the specified Map.
|
static Document |
Json.newDocument(Object bean)
Returns a new instance of a Document built from the specified Java bean.
|
static Document |
Json.newDocument(String jsonString)
Returns a Document built from the specified JSON string.
|
static DocumentBuilder |
Json.newDocumentBuilder(JsonOptions options)
Returns a new instance of JSON DocumentBuilder with the specified JsonOptions.
|
static DocumentReader |
Json.newDocumentReader(String jsonString)
Returns a new instance of the JSON DocumentReader.
|
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path,
Events.Delegate eventDelegate) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path,
Events.Delegate eventDelegate) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path,
Events.Delegate eventDelegate) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path,
Map<FieldPath,Value.Type> fieldPathTypeMap) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path,
Map<FieldPath,Value.Type> fieldPathTypeMap) |
static DocumentStream |
Json.newDocumentStream(org.apache.hadoop.fs.FileSystem fs,
String path,
Map<FieldPath,Value.Type> fieldPathTypeMap) |
static DocumentStream |
Json.newDocumentStream(InputStream in)
Returns a new instance of JSON DocumentStream from the specified InputStream.
|
static DocumentStream |
Json.newDocumentStream(InputStream in,
Events.Delegate eventDelegate) |
static DocumentStream |
Json.newDocumentStream(InputStream in,
Events.Delegate eventDelegate) |
static DocumentStream |
Json.newDocumentStream(InputStream in,
Map<FieldPath,Value.Type> fieldPathTypeMap)
Returns a new instance of s JSON DocumentStream from the specified InputStream
using the FieldPath => Type mapping to decode the JSON tokens from the stream.
|
static DocumentStream |
Json.newDocumentStream(InputStream in,
Map<FieldPath,Value.Type> fieldPathTypeMap)
Returns a new instance of s JSON DocumentStream from the specified InputStream
using the FieldPath => Type mapping to decode the JSON tokens from the stream.
|
boolean |
Events.Delegate.process(DocumentReader reader,
DocumentReader.EventType event,
Queue<Events.EventDescriptor> eventQueue) |
boolean |
Events.Delegate.process(DocumentReader reader,
DocumentReader.EventType event,
Queue<Events.EventDescriptor> eventQueue) |
boolean |
Events.Delegate.process(DocumentReader reader,
DocumentReader.EventType event,
Queue<Events.EventDescriptor> eventQueue) |
Events.EventDescriptor |
Events.EventDescriptor.setFieldName(String fieldName) |
Events.EventDescriptor |
Events.EventDescriptor.setValue(Value value) |
static String |
Json.toJsonString(Document d) |
static String |
Json.toJsonString(Document d,
JsonOptions options) |
static String |
Json.toJsonString(Document d,
JsonOptions options) |
static String |
Json.toJsonString(DocumentReader r) |
static String |
Json.toJsonString(DocumentReader r,
JsonOptions options) |
static String |
Json.toJsonString(DocumentReader r,
JsonOptions options) |
static void |
Json.writeReaderToBuilder(DocumentReader r,
DocumentBuilder w)
Deprecated.
|
static void |
Json.writeReaderToBuilder(DocumentReader r,
DocumentBuilder w)
Deprecated.
|
Constructor and Description |
---|
EventDescriptor(DocumentReader.EventType eventType) |
Modifier and Type | Method and Description |
---|---|
boolean |
Driver.accepts(String url)
Returns true if this Driver supports the protocol specified in the URL.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
byte[] value)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
byte[] value)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
byte[] value,
int offset,
int len)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
byte[] value,
int offset,
int len)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
ByteBuffer value)
Appends the given ByteBuffer to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
ByteBuffer value)
Appends the given ByteBuffer to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
List<? extends Object> list)
Appends elements of the given list to an existing ARRAY at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
List<? extends Object> list)
Appends elements of the given list to an existing ARRAY at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
String string)
Appends the given string to an existing STRING at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(FieldPath path,
String string)
Appends the given string to an existing STRING at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
byte[] value)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
byte[] value)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
byte[] value,
int offset,
int len)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
byte[] value,
int offset,
int len)
Appends the given byte array to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
ByteBuffer value)
Appends the given ByteBuffer to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
ByteBuffer value)
Appends the given ByteBuffer to an existing BINARY value at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
List<? extends Object> list)
Appends elements of the given list to an existing ARRAY at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
List<? extends Object> list)
Appends elements of the given list to an existing ARRAY at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
String string)
Appends the given string to an existing STRING at the given FieldPath.
|
DocumentMutation |
DocumentMutation.append(String path,
String string)
Appends the given string to an existing STRING at the given FieldPath.
|
void |
DocumentStore.beginTrackingWrites(String previousWritesContext)
Begins tracking the write operations performed through this instance of
DocumentStore . |
boolean |
DocumentStore.checkAndDelete(String _id,
QueryCondition condition)
Atomically evaluates the condition on given document and if the
condition holds true for the document then it is atomically deleted.
|
boolean |
DocumentStore.checkAndDelete(String _id,
QueryCondition condition)
Atomically evaluates the condition on given document and if the
condition holds true for the document then it is atomically deleted.
|
boolean |
DocumentStore.checkAndDelete(Value _id,
QueryCondition condition) |
boolean |
DocumentStore.checkAndDelete(Value _id,
QueryCondition condition) |
boolean |
DocumentStore.checkAndMutate(String _id,
QueryCondition condition,
DocumentMutation mutation)
|
boolean |
DocumentStore.checkAndMutate(String _id,
QueryCondition condition,
DocumentMutation mutation)
|
boolean |
DocumentStore.checkAndMutate(String _id,
QueryCondition condition,
DocumentMutation mutation)
|
boolean |
DocumentStore.checkAndMutate(Value _id,
QueryCondition condition,
DocumentMutation mutation)
|
boolean |
DocumentStore.checkAndMutate(Value _id,
QueryCondition condition,
DocumentMutation mutation)
|
boolean |
DocumentStore.checkAndMutate(Value _id,
QueryCondition condition,
DocumentMutation mutation)
|
boolean |
DocumentStore.checkAndReplace(String _id,
QueryCondition condition,
Document doc)
Atomically evaluates the condition on the given document and if the
condition holds true for the document then it atomically replaces the document
with the given document.
|
boolean |
DocumentStore.checkAndReplace(String _id,
QueryCondition condition,
Document doc)
Atomically evaluates the condition on the given document and if the
condition holds true for the document then it atomically replaces the document
with the given document.
|
boolean |
DocumentStore.checkAndReplace(String _id,
QueryCondition condition,
Document doc)
Atomically evaluates the condition on the given document and if the
condition holds true for the document then it atomically replaces the document
with the given document.
|
boolean |
DocumentStore.checkAndReplace(Value _id,
QueryCondition condition,
Document doc) |
boolean |
DocumentStore.checkAndReplace(Value _id,
QueryCondition condition,
Document doc) |
boolean |
DocumentStore.checkAndReplace(Value _id,
QueryCondition condition,
Document doc) |
default boolean |
DocumentStore.checkAndUpdate(String _id,
QueryCondition condition,
DocumentMutation mutation)
Atomically evaluates the condition on a given document and if the
condition holds true for the document then a mutation is applied on the document.
|
default boolean |
DocumentStore.checkAndUpdate(String _id,
QueryCondition condition,
DocumentMutation mutation)
Atomically evaluates the condition on a given document and if the
condition holds true for the document then a mutation is applied on the document.
|
default boolean |
DocumentStore.checkAndUpdate(String _id,
QueryCondition condition,
DocumentMutation mutation)
Atomically evaluates the condition on a given document and if the
condition holds true for the document then a mutation is applied on the document.
|
default boolean |
DocumentStore.checkAndUpdate(Value _id,
QueryCondition condition,
DocumentMutation mutation)
Atomically evaluates the condition on a given document and if the
condition holds true for the document then a mutation is applied on the document.
|
default boolean |
DocumentStore.checkAndUpdate(Value _id,
QueryCondition condition,
DocumentMutation mutation)
Atomically evaluates the condition on a given document and if the
condition holds true for the document then a mutation is applied on the document.
|
default boolean |
DocumentStore.checkAndUpdate(Value _id,
QueryCondition condition,
DocumentMutation mutation)
Atomically evaluates the condition on a given document and if the
condition holds true for the document then a mutation is applied on the document.
|
QueryCondition |
QueryCondition.condition(QueryCondition conditionToAdd)
Appends the specified condition to the current condition
block.
|
Connection |
Driver.connect(String url,
Document options)
Establishes and returns a Connection to an OJAI data source.
|
default DocumentStore |
Connection.createStore(String storeName)
Creates an OJAI DocumentStore specified by the given name or path and returns a handle.
|
default DocumentStore |
Connection.createStore(String storeName,
Document options)
Creates an OJAI DocumentStore specified by the given name or path and returns a handle.
|
default DocumentStore |
Connection.createStore(String storeName,
Document options)
Creates an OJAI DocumentStore specified by the given name or path and returns a handle.
|
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
BigDecimal dec) |
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
BigDecimal dec) |
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
byte dec)
Atomically decrements the given field (in dot separated notation)
of the given row id.
|
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
double dec) |
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
float dec) |
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
int dec) |
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
long dec) |
DocumentMutation |
DocumentMutation.decrement(FieldPath path,
short dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
BigDecimal dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
BigDecimal dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
byte dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
double dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
float dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
int dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
long dec) |
DocumentMutation |
DocumentMutation.decrement(String path,
short dec) |
void |
DocumentStore.delete(Document doc) |
void |
DocumentStore.delete(Document doc,
FieldPath fieldAsKey) |
void |
DocumentStore.delete(Document doc,
FieldPath fieldAsKey) |
void |
DocumentStore.delete(DocumentStream stream)
Deletes a set of documents from the DocumentStore represented by the DocumentStream.
|
void |
DocumentStore.delete(DocumentStream stream,
FieldPath fieldAsKey) |
void |
DocumentStore.delete(DocumentStream stream,
FieldPath fieldAsKey) |
void |
DocumentStore.delete(DocumentStream stream,
String fieldAsKey) |
void |
DocumentStore.delete(DocumentStream stream,
String fieldAsKey) |
void |
DocumentStore.delete(Document doc,
String fieldAsKey) |
void |
DocumentStore.delete(Document doc,
String fieldAsKey) |
DocumentMutation |
DocumentMutation.delete(FieldPath path)
Deletes the field at the given path.
|
void |
DocumentStore.delete(String _id)
Deletes a document with the given id.
|
DocumentMutation |
DocumentMutation.delete(String path)
Deletes the field at the given path.
|
void |
DocumentStore.delete(Value _id) |
default boolean |
Connection.deleteStore(String storeName)
Deletes the OJAI DocumentStore specified by the given name or path.
|
QueryCondition |
QueryCondition.equals(FieldPath path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified List value. |
QueryCondition |
QueryCondition.equals(FieldPath path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified List value. |
QueryCondition |
QueryCondition.equals(FieldPath path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified Map value. |
QueryCondition |
QueryCondition.equals(FieldPath path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified Map value. |
QueryCondition |
QueryCondition.equals(String path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified List value. |
QueryCondition |
QueryCondition.equals(String path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified List value. |
QueryCondition |
QueryCondition.equals(String path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified Map value. |
QueryCondition |
QueryCondition.equals(String path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath equals the specified Map value. |
QueryCondition |
QueryCondition.exists(FieldPath path)
Adds a condition that tests for existence of the specified
FieldPath . |
QueryCondition |
QueryCondition.exists(String path)
Adds a condition that tests for existence of the specified
FieldPath . |
DocumentStream |
DocumentStore.find(FieldPath... fieldPaths)
Deprecated.
|
QueryResult |
DocumentStore.find(Query query)
Executes the specified query on the DocumentStore and return a QueryResult.
|
DocumentStream |
DocumentStore.find(QueryCondition condition)
Deprecated.
|
DocumentStream |
DocumentStore.find(QueryCondition condition,
FieldPath... fieldPaths)
Deprecated.
|
DocumentStream |
DocumentStore.find(QueryCondition condition,
FieldPath... fieldPaths)
Deprecated.
|
DocumentStream |
DocumentStore.find(QueryCondition condition,
String... fieldPaths)
Deprecated.
|
DocumentStream |
DocumentStore.find(QueryCondition condition,
String... fieldPaths)
Deprecated.
|
DocumentStream |
DocumentStore.find(String... fieldPaths)
Deprecated.
|
DocumentStream |
DocumentStore.findQuery(Query query)
Deprecated.
|
DocumentStream |
DocumentStore.findQuery(String queryJSON)
Deprecated.
|
static Connection |
DriverManager.getConnection(String url)
Establishes and returns a Connection to an OJAI data source.
|
static Connection |
DriverManager.getConnection(String url,
Document options)
Establishes and returns a Connection to an OJAI data source.
|
static Connection |
DriverManager.getConnection(String url,
Document options)
Establishes and returns a Connection to an OJAI data source.
|
static Driver |
DriverManager.getDriver(String url)
Discovers and loads the OJAI Driver implementation which supported the
specified URL.
|
Object |
Query.getOption(String optionName)
Returns the value of the named query option.
|
default DocumentStore |
Connection.getStore(String storeName)
Returns a handle to an OJAI DocumentStore specified by the given name
or path.
|
default DocumentStore |
Connection.getStore(String storeName,
Document options)
Returns a handle to an OJAI DocumentStore specified by the given name
or path.
|
default DocumentStore |
Connection.getStore(String storeName,
Document options)
Returns a handle to an OJAI DocumentStore specified by the given name
or path.
|
QueryCondition |
QueryCondition.in(FieldPath path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is equal to at least one of the values in the
specified List . |
QueryCondition |
QueryCondition.in(FieldPath path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is equal to at least one of the values in the
specified List . |
QueryCondition |
QueryCondition.in(String path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is equal to at least one of the values in the
specified List . |
QueryCondition |
QueryCondition.in(String path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is equal to at least one of the values in the
specified List . |
DocumentMutation |
DocumentMutation.increment(FieldPath path,
BigDecimal inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
BigDecimal inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
byte inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
double inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
float inc)
Atomically increment the field specified by the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
int inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
long inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(FieldPath path,
short inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
BigDecimal inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
BigDecimal inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
byte inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
double inc) |
DocumentMutation |
DocumentMutation.increment(String path,
float inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
int inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
long inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
DocumentMutation |
DocumentMutation.increment(String path,
short inc)
Atomically increment the existing value at given the FieldPath by the given value.
|
void |
DocumentStore.increment(String _id,
String field,
BigDecimal inc) |
void |
DocumentStore.increment(String _id,
String field,
BigDecimal inc) |
void |
DocumentStore.increment(String _id,
String field,
BigDecimal inc) |
void |
DocumentStore.increment(String _id,
String field,
byte inc)
Atomically applies an increment to a given field (in dot separated notation)
of the given document id.
|
void |
DocumentStore.increment(String _id,
String field,
byte inc)
Atomically applies an increment to a given field (in dot separated notation)
of the given document id.
|
void |
DocumentStore.increment(String _id,
String field,
double inc) |
void |
DocumentStore.increment(String _id,
String field,
double inc) |
void |
DocumentStore.increment(String _id,
String field,
float inc) |
void |
DocumentStore.increment(String _id,
String field,
float inc) |
void |
DocumentStore.increment(String _id,
String field,
int inc) |
void |
DocumentStore.increment(String _id,
String field,
int inc) |
void |
DocumentStore.increment(String _id,
String field,
long inc) |
void |
DocumentStore.increment(String _id,
String field,
long inc) |
void |
DocumentStore.increment(String _id,
String field,
short inc) |
void |
DocumentStore.increment(String _id,
String field,
short inc) |
void |
DocumentStore.increment(Value _id,
String field,
BigDecimal inc) |
void |
DocumentStore.increment(Value _id,
String field,
BigDecimal inc) |
void |
DocumentStore.increment(Value _id,
String field,
BigDecimal inc) |
void |
DocumentStore.increment(Value _id,
String field,
byte inc) |
void |
DocumentStore.increment(Value _id,
String field,
byte inc) |
void |
DocumentStore.increment(Value _id,
String field,
double inc) |
void |
DocumentStore.increment(Value _id,
String field,
double inc) |
void |
DocumentStore.increment(Value _id,
String field,
float inc) |
void |
DocumentStore.increment(Value _id,
String field,
float inc) |
void |
DocumentStore.increment(Value _id,
String field,
int inc) |
void |
DocumentStore.increment(Value _id,
String field,
int inc) |
void |
DocumentStore.increment(Value _id,
String field,
long inc) |
void |
DocumentStore.increment(Value _id,
String field,
long inc) |
void |
DocumentStore.increment(Value _id,
String field,
short inc) |
void |
DocumentStore.increment(Value _id,
String field,
short inc) |
void |
DocumentStore.insert(Document doc) |
void |
DocumentStore.insert(Document doc,
FieldPath fieldAsKey) |
void |
DocumentStore.insert(Document doc,
FieldPath fieldAsKey) |
void |
DocumentStore.insert(DocumentStream stream)
Inserts a set of documents represented by the DocumentStream into the DocumentStore.
|
void |
DocumentStore.insert(DocumentStream stream,
FieldPath fieldAsKey) |
void |
DocumentStore.insert(DocumentStream stream,
FieldPath fieldAsKey) |
void |
DocumentStore.insert(DocumentStream stream,
String fieldAsKey) |
void |
DocumentStore.insert(DocumentStream stream,
String fieldAsKey) |
void |
DocumentStore.insert(Document doc,
String fieldAsKey) |
void |
DocumentStore.insert(Document doc,
String fieldAsKey) |
void |
DocumentStore.insert(String _id,
Document doc)
Inserts a document with the given id.
|
void |
DocumentStore.insert(String _id,
Document doc)
Inserts a document with the given id.
|
void |
DocumentStore.insert(Value _id,
Document doc) |
void |
DocumentStore.insert(Value _id,
Document doc) |
void |
DocumentStore.insertOrReplace(Document doc)
Inserts or replaces a new document in this DocumentStore.
|
void |
DocumentStore.insertOrReplace(Document doc,
FieldPath fieldAsKey)
Inserts or replaces a new document in this DocumentStore with the value of
the specified Field as the
_id . |
void |
DocumentStore.insertOrReplace(Document doc,
FieldPath fieldAsKey)
Inserts or replaces a new document in this DocumentStore with the value of
the specified Field as the
_id . |
void |
DocumentStore.insertOrReplace(DocumentStream stream)
Inserts all documents from the specified DocumentStream into this DocumentStore.
|
void |
DocumentStore.insertOrReplace(DocumentStream stream,
FieldPath fieldAsKey)
Inserts all documents from the specified DocumentStream into this DocumentStore
using the field specified by parameter
fieldAsKey as the "_id" field. |
void |
DocumentStore.insertOrReplace(DocumentStream stream,
FieldPath fieldAsKey)
Inserts all documents from the specified DocumentStream into this DocumentStore
using the field specified by parameter
fieldAsKey as the "_id" field. |
void |
DocumentStore.insertOrReplace(DocumentStream stream,
String fieldAsKey)
Inserts all documents from the specified DocumentStream into this DocumentStore
using the field specified by parameter
fieldAsKey as the "_id" field. |
void |
DocumentStore.insertOrReplace(DocumentStream stream,
String fieldAsKey)
Inserts all documents from the specified DocumentStream into this DocumentStore
using the field specified by parameter
fieldAsKey as the "_id" field. |
void |
DocumentStore.insertOrReplace(Document doc,
String fieldAsKey)
Inserts or replaces a new document in this DocumentStore with the value of
the specified Field as the
_id . |
void |
DocumentStore.insertOrReplace(Document doc,
String fieldAsKey)
Inserts or replaces a new document in this DocumentStore with the value of
the specified Field as the
_id . |
void |
DocumentStore.insertOrReplace(String _id,
Document r)
Inserts or replaces a new document in this DocumentStore with the given _id.
|
void |
DocumentStore.insertOrReplace(String _id,
Document r)
Inserts or replaces a new document in this DocumentStore with the given _id.
|
void |
DocumentStore.insertOrReplace(Value _id,
Document doc)
Inserts or replaces a new document in this DocumentStore with the given _id.
|
void |
DocumentStore.insertOrReplace(Value _id,
Document doc)
Inserts or replaces a new document in this DocumentStore with the given _id.
|
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
BigDecimal value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified BigDecimal value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
BigDecimal value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified BigDecimal value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
BigDecimal value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified BigDecimal value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
boolean value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified boolean value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
boolean value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified boolean value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
byte value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified byte value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
byte value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified byte value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
ByteBuffer value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified ByteBuffer value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
ByteBuffer value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified ByteBuffer value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
ByteBuffer value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified ByteBuffer value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
double value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified double value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
double value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified double value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
float value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified float value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
float value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified float value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
int value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified int value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
int value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified int value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
long value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified long value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
long value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified long value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
ODate value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Date value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
ODate value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Date value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
ODate value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Date value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OInterval value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Interval value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OInterval value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Interval value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OInterval value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Interval value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OTime value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Time value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OTime value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Time value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OTime value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Time value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OTimestamp value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Timestamp value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OTimestamp value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Timestamp value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
OTimestamp value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Timestamp value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
short value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified short value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
short value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified short value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
String value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified String value. |
QueryCondition |
QueryCondition.is(FieldPath path,
QueryCondition.Op op,
String value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified String value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
BigDecimal value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified BigDecimal value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
BigDecimal value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified BigDecimal value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
BigDecimal value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified BigDecimal value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
boolean value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified boolean value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
boolean value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified boolean value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
byte value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified byte value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
byte value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified byte value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
ByteBuffer value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified ByteBuffer value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
ByteBuffer value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified ByteBuffer value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
ByteBuffer value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified ByteBuffer value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
double value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified double value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
double value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified double value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
float value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified float value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
float value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified float value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
int value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified int value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
int value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified int value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
long value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified long value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
long value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified long value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
ODate value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Date value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
ODate value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Date value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
ODate value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Date value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OInterval value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Interval value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OInterval value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Interval value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OInterval value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Interval value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OTime value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Time value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OTime value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Time value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OTime value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Time value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OTimestamp value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Timestamp value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OTimestamp value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Timestamp value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
OTimestamp value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified Timestamp value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
short value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified short value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
short value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified short value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
String value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified String value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
String value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified String value. |
QueryCondition |
QueryCondition.is(String path,
QueryCondition.Op op,
String value)
Adds a condition that tests if the
Value at the specified
FieldPath satisfies the given QueryCondition.Op against
the specified String value. |
QueryCondition |
QueryCondition.like(FieldPath path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression. |
QueryCondition |
QueryCondition.like(FieldPath path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression. |
QueryCondition |
QueryCondition.like(FieldPath path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.like(FieldPath path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.like(FieldPath path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.like(String path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression. |
QueryCondition |
QueryCondition.like(String path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression. |
QueryCondition |
QueryCondition.like(String path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.like(String path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.like(String path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified SQL LIKE
expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.matches(FieldPath path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified regular
expression. |
QueryCondition |
QueryCondition.matches(FieldPath path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified regular
expression. |
QueryCondition |
QueryCondition.matches(String path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified regular
expression. |
QueryCondition |
QueryCondition.matches(String path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and matches the specified regular
expression. |
DocumentMutation |
DocumentMutation.merge(FieldPath path,
Document doc)
Merges the existing MAP at the given FieldPath with the specified Document.
|
DocumentMutation |
DocumentMutation.merge(FieldPath path,
Document doc)
Merges the existing MAP at the given FieldPath with the specified Document.
|
DocumentMutation |
DocumentMutation.merge(FieldPath path,
Map<String,Object> map)
Merges the existing MAP at the given FieldPath with the specified Map.
|
DocumentMutation |
DocumentMutation.merge(FieldPath path,
Map<String,Object> map)
Merges the existing MAP at the given FieldPath with the specified Map.
|
DocumentMutation |
DocumentMutation.merge(String path,
Document doc)
Merges the existing MAP at the given FieldPath with the specified Document.
|
DocumentMutation |
DocumentMutation.merge(String path,
Document doc)
Merges the existing MAP at the given FieldPath with the specified Document.
|
DocumentMutation |
DocumentMutation.merge(String path,
Map<String,Object> map)
Merges the existing MAP at the given FieldPath with the specified Map.
|
DocumentMutation |
DocumentMutation.merge(String path,
Map<String,Object> map)
Merges the existing MAP at the given FieldPath with the specified Map.
|
Document |
Driver.newDocument(Map<String,Object> map)
Returns a new instance of Document constructed from the specified Map.
|
Document |
Connection.newDocument(Map<String,Object> map)
Returns a new instance of Document constructed from the specified Map.
|
Document |
Driver.newDocument(Object bean)
Returns a new instance of Document built from the specified Java bean.
|
Document |
Connection.newDocument(Object bean)
Returns a new instance of Document built from the specified Java bean.
|
Document |
Driver.newDocument(String documentJson)
Returns a new instance of OJAI Document parsed from the specified JSON string.
|
Document |
Connection.newDocument(String jsonString)
Returns a new instance of OJAI Document parsed from the specified JSON string.
|
Query |
Driver.newQuery(String queryJson)
Creates and returns a new Query object decoded from the supplied JSON String.
|
Query |
Connection.newQuery(String queryJson)
Creates and returns a new Query object decoded from the supplied JSON String.
|
Value |
ValueBuilder.newValue(BigDecimal value)
|
Value |
ValueBuilder.newValue(byte[] value)
Returns a new
Value of Value.Type.BINARY from the specified byte array. |
Value |
ValueBuilder.newValue(ByteBuffer value)
|
Value |
ValueBuilder.newValue(List<? extends Object> list)
|
Value |
ValueBuilder.newValue(Map<String,? extends Object> map)
|
Value |
ValueBuilder.newValue(ODate value)
|
Value |
ValueBuilder.newValue(OInterval value)
|
Value |
ValueBuilder.newValue(OTime value)
|
Value |
ValueBuilder.newValue(OTimestamp value)
|
Value |
ValueBuilder.newValue(String value)
Returns a new
Value of Value.Type.STRING from the specified String. |
QueryCondition |
QueryCondition.notEquals(FieldPath path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified List value. |
QueryCondition |
QueryCondition.notEquals(FieldPath path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified List value. |
QueryCondition |
QueryCondition.notEquals(FieldPath path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified Map value. |
QueryCondition |
QueryCondition.notEquals(FieldPath path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified Map value. |
QueryCondition |
QueryCondition.notEquals(String path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified List value. |
QueryCondition |
QueryCondition.notEquals(String path,
List<? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified List value. |
QueryCondition |
QueryCondition.notEquals(String path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified Map value. |
QueryCondition |
QueryCondition.notEquals(String path,
Map<String,? extends Object> value)
Adds a condition that tests if the
Value at the specified
FieldPath does not equal the specified Map value. |
QueryCondition |
QueryCondition.notExists(FieldPath path)
Adds a condition that tests for non-existence of the specified
FieldPath . |
QueryCondition |
QueryCondition.notExists(String path)
Adds a condition that tests for non-existence of the specified
FieldPath . |
QueryCondition |
QueryCondition.notIn(FieldPath path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is not equal to any of the values in the
specified List . |
QueryCondition |
QueryCondition.notIn(FieldPath path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is not equal to any of the values in the
specified List . |
QueryCondition |
QueryCondition.notIn(String path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is not equal to any of the values in the
specified List . |
QueryCondition |
QueryCondition.notIn(String path,
List<? extends Object> listOfValue)
Adds a condition that tests if the
Value at the specified
FieldPath is not equal to any of the values in the
specified List . |
QueryCondition |
QueryCondition.notLike(FieldPath path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression. |
QueryCondition |
QueryCondition.notLike(FieldPath path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression. |
QueryCondition |
QueryCondition.notLike(FieldPath path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.notLike(FieldPath path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.notLike(FieldPath path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.notLike(String path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression. |
QueryCondition |
QueryCondition.notLike(String path,
String likeExpression)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression. |
QueryCondition |
QueryCondition.notLike(String path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.notLike(String path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.notLike(String path,
String likeExpression,
Character escapeChar)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
SQL LIKE expression optionally escaped with the specified escape character. |
QueryCondition |
QueryCondition.notMatches(FieldPath path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
regular expression. |
QueryCondition |
QueryCondition.notMatches(FieldPath path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
regular expression. |
QueryCondition |
QueryCondition.notMatches(String path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
regular expression. |
QueryCondition |
QueryCondition.notMatches(String path,
String regex)
Adds a condition that tests if the
Value at the specified
FieldPath is a String and does not match the specified
regular expression. |
QueryCondition |
QueryCondition.notTypeOf(FieldPath path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is not of the specified Type . |
QueryCondition |
QueryCondition.notTypeOf(FieldPath path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is not of the specified Type . |
QueryCondition |
QueryCondition.notTypeOf(String path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is not of the specified Type . |
QueryCondition |
QueryCondition.notTypeOf(String path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is not of the specified Type . |
void |
OpListener.onFailure(Exception e)
Called when an
Exception occurred while retrieving a Document |
void |
OpListener.onSuccess(Document document)
Called when a Document from the async operation is available.
|
Query |
Query.orderBy(FieldPath... fieldPaths)
Sets the sort ordering of the returned Documents to the ascending order of specified field paths.
|
Query |
Query.orderBy(FieldPath field,
SortOrder order)
Sets the sort ordering of the returned Documents to the specified field and order.
|
Query |
Query.orderBy(FieldPath field,
SortOrder order)
Sets the sort ordering of the returned Documents to the specified field and order.
|
Query |
Query.orderBy(String... fieldPaths)
Sets the sort ordering of the returned Documents to the ascending order of specified field paths.
|
Query |
Query.orderBy(String field,
SortOrder order)
Sets the sort ordering of the returned Documents to the specified field and order.
|
Query |
Query.orderBy(String field,
SortOrder order)
Sets the sort ordering of the returned Documents to the specified field and order.
|
Query |
Query.orderBy(String field,
String order)
Sets the sort ordering of the returned Documents to the specified field and order.
|
Query |
Query.orderBy(String field,
String order)
Sets the sort ordering of the returned Documents to the specified field and order.
|
static void |
DriverManager.registerDriver(Driver driver)
Registers the specified Driver with this DriverManager.
|
void |
DocumentStore.replace(Document doc) |
void |
DocumentStore.replace(Document doc,
FieldPath fieldAsKey) |
void |
DocumentStore.replace(Document doc,
FieldPath fieldAsKey) |
void |
DocumentStore.replace(DocumentStream stream)
Replaces a set of documents represented by the DocumentStream into the DocumentStore.
|
void |
DocumentStore.replace(DocumentStream stream,
FieldPath fieldAsKey) |
void |
DocumentStore.replace(DocumentStream stream,
FieldPath fieldAsKey) |
void |
DocumentStore.replace(DocumentStream stream,
String fieldAsKey) |
void |
DocumentStore.replace(DocumentStream stream,
String fieldAsKey) |
void |
DocumentStore.replace(Document doc,
String fieldAsKey) |
void |
DocumentStore.replace(Document doc,
String fieldAsKey) |
void |
DocumentStore.replace(String _id,
Document doc)
Replaces a document in the DocumentStore.
|
void |
DocumentStore.replace(String _id,
Document doc)
Replaces a document in the DocumentStore.
|
void |
DocumentStore.replace(Value _id,
Document doc) |
void |
DocumentStore.replace(Value _id,
Document doc) |
Query |
Query.select(FieldPath... fieldPaths)
Adds the list of field paths to the list of projected fields.
|
Query |
Query.select(String... fieldPaths)
Adds the list of field paths to the list of projected fields.
|
DocumentMutation |
DocumentMutation.set(FieldPath path,
BigDecimal bd)
Sets the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
BigDecimal bd)
Sets the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
boolean b)
Sets the field at the given FieldPath to the specified
boolean value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
byte b)
Sets the field at the given FieldPath to the specified
byte value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
ByteBuffer bb)
Sets the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
ByteBuffer bb)
Sets the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
Document doc)
Sets the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
Document doc)
Sets the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
double d)
Sets the field at the given FieldPath to the specified
double value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
float f)
Sets the field at the given FieldPath to the specified
float value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
int i)
Sets the field at the given FieldPath to the specified
int value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
List<? extends Object> list)
Sets the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
List<? extends Object> list)
Sets the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
long l)
Sets the field at the given FieldPath to the specified
long value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
Map<String,? extends Object> map)
Sets the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
Map<String,? extends Object> map)
Sets the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.set(FieldPath path,
ODate d)
Sets the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
ODate d)
Sets the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
OInterval intv)
Sets the field at the given FieldPath to the specified
Interval value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
OInterval intv)
Sets the field at the given FieldPath to the specified
Interval value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
OTime t)
Sets the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
OTime t)
Sets the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
OTimestamp ts)
Sets the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
OTimestamp ts)
Sets the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
short s)
Sets the field at the given FieldPath to the specified
short value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
String value)
Sets the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
String value)
Sets the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.set(FieldPath path,
Value value)
Sets the field at the given FieldPath to the specified value.
|
DocumentMutation |
DocumentMutation.set(FieldPath path,
Value value)
Sets the field at the given FieldPath to the specified value.
|
DocumentMutation |
DocumentMutation.set(String path,
BigDecimal bd)
Sets the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.set(String path,
BigDecimal bd)
Sets the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.set(String path,
boolean b)
Sets the field at the given FieldPath to the specified
boolean value. |
DocumentMutation |
DocumentMutation.set(String path,
byte b)
Sets the field at the given FieldPath to the specified
byte value. |
DocumentMutation |
DocumentMutation.set(String path,
ByteBuffer bb)
Sets the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.set(String path,
ByteBuffer bb)
Sets the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.set(String path,
Document doc)
Sets the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.set(String path,
Document doc)
Sets the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.set(String path,
double d)
Sets the field at the given FieldPath to the specified
double value. |
DocumentMutation |
DocumentMutation.set(String path,
float f)
Sets the field at the given FieldPath to the specified
float value. |
DocumentMutation |
DocumentMutation.set(String path,
int i)
Sets the field at the given FieldPath to the specified
int value. |
DocumentMutation |
DocumentMutation.set(String path,
List<? extends Object> list)
Sets the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.set(String path,
List<? extends Object> list)
Sets the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.set(String path,
long l)
Sets the field at the given FieldPath to the specified
long value. |
DocumentMutation |
DocumentMutation.set(String path,
Map<String,? extends Object> map)
Sets the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.set(String path,
Map<String,? extends Object> map)
Sets the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.set(String path,
ODate d)
Sets the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.set(String path,
ODate d)
Sets the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.set(String path,
OInterval intv)
Sets the field at the given FieldPath to the specified
Interval value. |
DocumentMutation |
DocumentMutation.set(String path,
OInterval intv)
Sets the field at the given FieldPath to the specified
Interval value. |
DocumentMutation |
DocumentMutation.set(String path,
OTime t)
Sets the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.set(String path,
OTime t)
Sets the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.set(String path,
OTimestamp ts)
Sets the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.set(String path,
OTimestamp ts)
Sets the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.set(String path,
short s)
Sets the field at the given FieldPath to the specified
short value. |
DocumentMutation |
DocumentMutation.set(String path,
String value)
Sets the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.set(String path,
String value)
Sets the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.set(String path,
Value value)
Sets the field at the given FieldPath to the specified value.
|
DocumentMutation |
DocumentMutation.set(String path,
Value value)
Sets the field at the given FieldPath to the specified value.
|
void |
MutationOp.setFieldPath(FieldPath fieldPath) |
DocumentMutation |
DocumentMutation.setNull(FieldPath path)
Sets the field at the given FieldPath to
NULL Value. |
DocumentMutation |
DocumentMutation.setNull(String path)
Sets the field at the given FieldPath to
NULL Value. |
Query |
Query.setOption(String optionName,
Object value)
Sets a named query option.
|
Query |
Query.setOption(String optionName,
Object value)
Sets a named query option.
|
void |
MutationOp.setOpValue(Value opValue) |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
BigDecimal bd)
Sets or replaces the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
BigDecimal bd)
Sets or replaces the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
boolean b)
Sets or replaces the field at the given FieldPath to the specified
boolean value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
byte b)
Sets or replaces the field at the given FieldPath to the specified
byte value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
ByteBuffer bb)
Sets or replaces the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
ByteBuffer bb)
Sets or replaces the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
Document doc)
Sets or replaces the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
Document doc)
Sets or replaces the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
double d)
Sets or replaces the field at the given FieldPath to the specified
double value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
float f)
Sets or replaces the field at the given FieldPath to the specified
float value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
int i)
Sets or replaces the field at the given FieldPath to the specified
int value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
List<? extends Object> list)
Sets or replaces the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
List<? extends Object> list)
Sets or replaces the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
long l)
Sets or replaces the field at the given FieldPath to the specified
long value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
Map<String,? extends Object> map)
Sets or replaces the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
Map<String,? extends Object> map)
Sets or replaces the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
ODate d)
Sets or replaces the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
ODate d)
Sets or replaces the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
OInterval intv)
Sets or replaces the field at the given FieldPath to the specified
Interval . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
OInterval intv)
Sets or replaces the field at the given FieldPath to the specified
Interval . |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
OTime t)
Sets or replaces the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
OTime t)
Sets or replaces the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
OTimestamp ts)
Sets or replaces the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
OTimestamp ts)
Sets or replaces the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
short s)
Sets or replaces the field at the given FieldPath to the specified
short value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
String string)
Sets or replaces the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
String string)
Sets or replaces the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
Value value)
Sets or replaces the field at the given FieldPath to the new value.
|
DocumentMutation |
DocumentMutation.setOrReplace(FieldPath path,
Value value)
Sets or replaces the field at the given FieldPath to the new value.
|
DocumentMutation |
DocumentMutation.setOrReplace(String path,
BigDecimal bd)
Sets or replaces the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
BigDecimal bd)
Sets or replaces the field at the given FieldPath to the specified
BigDecimal value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
boolean b)
Sets or replaces the field at the given FieldPath to the specified
boolean value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
byte b)
Sets or replaces the field at the given FieldPath to the specified
byte value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
ByteBuffer bb)
Sets or replaces the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
ByteBuffer bb)
Sets or replaces the field at the given FieldPath to the specified
ByteBuffer . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
Document doc)
Sets or replaces the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
Document doc)
Sets or replaces the field at the given FieldPath to the specified
Document . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
double d)
Sets or replaces the field at the given FieldPath to the specified
double value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
float f)
Sets or replaces the field at the given FieldPath to the specified
float value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
int i)
Sets or replaces the field at the given FieldPath to the specified
int value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
List<? extends Object> list)
Sets or replaces the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
List<? extends Object> list)
Sets or replaces the field at the given FieldPath to the specified
List . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
long l)
Sets or replaces the field at the given FieldPath to the specified
long value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
Map<String,? extends Object> map)
Sets or replaces the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
Map<String,? extends Object> map)
Sets or replaces the field at the given FieldPath to the specified
Map . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
ODate d)
Sets or replaces the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
ODate d)
Sets or replaces the field at the given FieldPath to the specified
Date value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
OInterval intv)
Sets or replaces the field at the given FieldPath to the specified
Interval . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
OInterval intv)
Sets or replaces the field at the given FieldPath to the specified
Interval . |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
OTime t)
Sets or replaces the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
OTime t)
Sets or replaces the field at the given FieldPath to the specified
Time value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
OTimestamp ts)
Sets or replaces the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
OTimestamp ts)
Sets or replaces the field at the given FieldPath to the specified
Timestamp value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
short s)
Sets or replaces the field at the given FieldPath to the specified
short value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
String string)
Sets or replaces the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
String string)
Sets or replaces the field at the given FieldPath to the specified
String value. |
DocumentMutation |
DocumentMutation.setOrReplace(String path,
Value value)
Sets or replaces the field at the given FieldPath to the new value.
|
DocumentMutation |
DocumentMutation.setOrReplace(String path,
Value value)
Sets or replaces the field at the given FieldPath to the new value.
|
DocumentMutation |
DocumentMutation.setOrReplaceNull(FieldPath path)
Sets or replaces the field at the given FieldPath to
NULL Value. |
DocumentMutation |
DocumentMutation.setOrReplaceNull(String path)
Sets or replaces the field at the given FieldPath to
NULL Value. |
QueryCondition |
QueryCondition.sizeOf(FieldPath path,
QueryCondition.Op op,
long size)
Adds a condition that tests if the size of the
Value at the
specified FieldPath satisfies the given QueryCondition.Op and the size. |
QueryCondition |
QueryCondition.sizeOf(FieldPath path,
QueryCondition.Op op,
long size)
Adds a condition that tests if the size of the
Value at the
specified FieldPath satisfies the given QueryCondition.Op and the size. |
QueryCondition |
QueryCondition.sizeOf(String path,
QueryCondition.Op op,
long size)
Adds a condition that tests if the size of the
Value at the
specified FieldPath satisfies the given QueryCondition.Op and the size. |
QueryCondition |
QueryCondition.sizeOf(String path,
QueryCondition.Op op,
long size)
Adds a condition that tests if the size of the
Value at the
specified FieldPath satisfies the given QueryCondition.Op and the size. |
default boolean |
Connection.storeExists(String storeName)
Tests if the OJAI DocumentStore specified by the given name or path exists.
|
QueryCondition |
QueryCondition.typeOf(FieldPath path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is of the specified Type . |
QueryCondition |
QueryCondition.typeOf(FieldPath path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is of the specified Type . |
QueryCondition |
QueryCondition.typeOf(String path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is of the specified Type . |
QueryCondition |
QueryCondition.typeOf(String path,
Value.Type type)
Adds a condition that tests if the
Value at the specified
FieldPath is of the specified Type . |
void |
DocumentStore.update(String _id,
DocumentMutation mutation)
Applies a mutation on the document identified by the document id.
All updates specified by the mutation object should be applied atomically, and consistently meaning either all of the updates in mutation are applied or none of them is applied and a partial update should not be visible to an observer. |
void |
DocumentStore.update(String _id,
DocumentMutation mutation)
Applies a mutation on the document identified by the document id.
All updates specified by the mutation object should be applied atomically, and consistently meaning either all of the updates in mutation are applied or none of them is applied and a partial update should not be visible to an observer. |
void |
DocumentStore.update(Value _id,
DocumentMutation mutation)
Applies a mutation on the document identified by the document id.
All updates specified by the mutation object should be applied atomically, and consistently meaning either all of the updates in mutation are applied or none of them is applied and a partial update should not be visible to an observer. |
void |
DocumentStore.update(Value _id,
DocumentMutation mutation)
Applies a mutation on the document identified by the document id.
All updates specified by the mutation object should be applied atomically, and consistently meaning either all of the updates in mutation are applied or none of them is applied and a partial update should not be visible to an observer. |
Query |
Query.waitForTrackedWrites(String writesContext)
Sets the writes-context for this query.
|
Query |
Query.where(QueryCondition condition)
Sets the filtering condition for the query.
|
Query |
Query.where(String conditionJson)
Sets the filtering condition for the query.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
Values.asBoolean(Value value) |
static byte |
Values.asByte(Value value) |
static int |
Values.asInt(Value value) |
static String |
Values.asJsonString(Value value)
Converts a
Value to its extended JSON representation.The 7 intrinsic types, null, boolean, string, long,
double, array, and map , are represented in regular JSON. |
static Number |
Values.asNumber(Value value) |
static short |
Values.asShort(Value value) |
static String |
Values.asString(Value value) |
static BigDecimal |
Decimals.convertByteToBigDecimal(byte[] value,
int scale) |
static Map<String,Object> |
MapEncoder.encode(DocumentReader reader)
Deprecated.
Encodes values from the specified DocumentReader into a Java Map.
|
static Map<String,Object> |
DocumentReaders.encode(DocumentReader reader)
Encodes values from the specified DocumentReader into a Java Map.
|
static ByteBuffer |
Documents.getBinary(Document document,
FieldPath fieldPath,
ByteBuffer defaultValue)
Returns the value at the specified fieldPath as a
ByteBuffer object or
the specified defaultValue if the specified FieldPath does not
exist in the document. |
static ByteBuffer |
Documents.getBinary(Document document,
FieldPath fieldPath,
ByteBuffer defaultValue)
Returns the value at the specified fieldPath as a
ByteBuffer object or
the specified defaultValue if the specified FieldPath does not
exist in the document. |
static ByteBuffer |
Documents.getBinary(Document document,
String fieldPath,
ByteBuffer defaultValue)
Returns the value at the specified fieldPath as a
ByteBuffer object or
the specified defaultValue if the specified FieldPath does not
exist in the document. |
static ByteBuffer |
Documents.getBinary(Document document,
String fieldPath,
ByteBuffer defaultValue)
Returns the value at the specified fieldPath as a
ByteBuffer object or
the specified defaultValue if the specified FieldPath does not
exist in the document. |
static boolean |
Documents.getBoolean(Document document,
FieldPath fieldPath,
boolean defaultValue)
Returns the value at the specified fieldPath as a
boolean or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static boolean |
Documents.getBoolean(Document document,
FieldPath fieldPath,
boolean defaultValue)
Returns the value at the specified fieldPath as a
boolean or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static boolean |
Documents.getBoolean(Document document,
String fieldPath,
boolean defaultValue)
Returns the value at the specified fieldPath as a
boolean or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static boolean |
Documents.getBoolean(Document document,
String fieldPath,
boolean defaultValue)
Returns the value at the specified fieldPath as a
boolean or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static byte |
Documents.getByte(Document document,
FieldPath fieldPath,
byte defaultValue)
Returns the value at the specified fieldPath as a
byte or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static byte |
Documents.getByte(Document document,
FieldPath fieldPath,
byte defaultValue)
Returns the value at the specified fieldPath as a
byte or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static byte |
Documents.getByte(Document document,
String fieldPath,
byte defaultValue)
Returns the value at the specified fieldPath as a
byte or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static byte |
Documents.getByte(Document document,
String fieldPath,
byte defaultValue)
Returns the value at the specified fieldPath as a
byte or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static ODate |
Documents.getDate(Document document,
FieldPath fieldPath,
ODate defaultValue)
Returns the value at the specified fieldPath as a
ODate or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static ODate |
Documents.getDate(Document document,
FieldPath fieldPath,
ODate defaultValue)
Returns the value at the specified fieldPath as a
ODate or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static ODate |
Documents.getDate(Document document,
String fieldPath,
ODate defaultValue)
Returns the value at the specified fieldPath as a
ODate or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static ODate |
Documents.getDate(Document document,
String fieldPath,
ODate defaultValue)
Returns the value at the specified fieldPath as a
ODate or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static BigDecimal |
Documents.getDecimal(Document document,
FieldPath fieldPath,
BigDecimal defaultValue)
Returns the value at the specified fieldPath as a
BigDecimal or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static BigDecimal |
Documents.getDecimal(Document document,
FieldPath fieldPath,
BigDecimal defaultValue)
Returns the value at the specified fieldPath as a
BigDecimal or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static BigDecimal |
Documents.getDecimal(Document document,
String fieldPath,
BigDecimal defaultValue)
Returns the value at the specified fieldPath as a
BigDecimal or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static BigDecimal |
Documents.getDecimal(Document document,
String fieldPath,
BigDecimal defaultValue)
Returns the value at the specified fieldPath as a
BigDecimal or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static double |
Documents.getDouble(Document document,
FieldPath fieldPath,
double defaultValue)
Returns the value at the specified fieldPath as a
double or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static double |
Documents.getDouble(Document document,
FieldPath fieldPath,
double defaultValue)
Returns the value at the specified fieldPath as a
double or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static double |
Documents.getDouble(Document document,
String fieldPath,
double defaultValue)
Returns the value at the specified fieldPath as a
double or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static double |
Documents.getDouble(Document document,
String fieldPath,
double defaultValue)
Returns the value at the specified fieldPath as a
double or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static DocumentReader.EventType |
Types.getEventTypeForType(Value.Type type)
Returns the
EventType for the specified Type . |
static float |
Documents.getFloat(Document document,
FieldPath fieldPath,
float defaultValue)
Returns the value at the specified fieldPath as a
float or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static float |
Documents.getFloat(Document document,
FieldPath fieldPath,
float defaultValue)
Returns the value at the specified fieldPath as a
float or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static float |
Documents.getFloat(Document document,
String fieldPath,
float defaultValue)
Returns the value at the specified fieldPath as a
float or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static float |
Documents.getFloat(Document document,
String fieldPath,
float defaultValue)
Returns the value at the specified fieldPath as a
float or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static int |
Documents.getInt(Document document,
FieldPath fieldPath,
int defaultValue)
Returns the value at the specified fieldPath as a
int or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static int |
Documents.getInt(Document document,
FieldPath fieldPath,
int defaultValue)
Returns the value at the specified fieldPath as a
int or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static int |
Documents.getInt(Document document,
String fieldPath,
int defaultValue)
Returns the value at the specified fieldPath as a
int or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static int |
Documents.getInt(Document document,
String fieldPath,
int defaultValue)
Returns the value at the specified fieldPath as a
int or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OInterval |
Documents.getInterval(Document document,
FieldPath fieldPath,
OInterval defaultValue)
Returns the value at the specified fieldPath as a
OInterval or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OInterval |
Documents.getInterval(Document document,
FieldPath fieldPath,
OInterval defaultValue)
Returns the value at the specified fieldPath as a
OInterval or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OInterval |
Documents.getInterval(Document document,
String fieldPath,
OInterval defaultValue)
Returns the value at the specified fieldPath as a
OInterval or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OInterval |
Documents.getInterval(Document document,
String fieldPath,
OInterval defaultValue)
Returns the value at the specified fieldPath as a
OInterval or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static List<Object> |
Documents.getList(Document document,
FieldPath fieldPath,
List<Object> defaultValue)
Returns the value at the specified fieldPath as a
List or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static List<Object> |
Documents.getList(Document document,
FieldPath fieldPath,
List<Object> defaultValue)
Returns the value at the specified fieldPath as a
List or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static List<Object> |
Documents.getList(Document document,
String fieldPath,
List<Object> defaultValue)
Returns the value at the specified fieldPath as a
List or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static List<Object> |
Documents.getList(Document document,
String fieldPath,
List<Object> defaultValue)
Returns the value at the specified fieldPath as a
List or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static long |
Documents.getLong(Document document,
FieldPath fieldPath,
long defaultValue)
Returns the value at the specified fieldPath as a
long or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static long |
Documents.getLong(Document document,
FieldPath fieldPath,
long defaultValue)
Returns the value at the specified fieldPath as a
long or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static long |
Documents.getLong(Document document,
String fieldPath,
long defaultValue)
Returns the value at the specified fieldPath as a
long or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static long |
Documents.getLong(Document document,
String fieldPath,
long defaultValue)
Returns the value at the specified fieldPath as a
long or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Map<String,Object> |
Documents.getMap(Document document,
FieldPath fieldPath,
Map<String,Object> defaultValue)
Returns the value at the specified fieldPath as a
Map or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Map<String,Object> |
Documents.getMap(Document document,
FieldPath fieldPath,
Map<String,Object> defaultValue)
Returns the value at the specified fieldPath as a
Map or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Map<String,Object> |
Documents.getMap(Document document,
String fieldPath,
Map<String,Object> defaultValue)
Returns the value at the specified fieldPath as a
Map or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Map<String,Object> |
Documents.getMap(Document document,
String fieldPath,
Map<String,Object> defaultValue)
Returns the value at the specified fieldPath as a
Map or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static short |
Documents.getShort(Document document,
FieldPath fieldPath,
short defaultValue)
Returns the value at the specified fieldPath as a
short or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static short |
Documents.getShort(Document document,
FieldPath fieldPath,
short defaultValue)
Returns the value at the specified fieldPath as a
short or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static short |
Documents.getShort(Document document,
String fieldPath,
short defaultValue)
Returns the value at the specified fieldPath as a
short or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static short |
Documents.getShort(Document document,
String fieldPath,
short defaultValue)
Returns the value at the specified fieldPath as a
short or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static String |
Documents.getString(Document document,
FieldPath fieldPath,
String defaultValue)
Returns the value at the specified fieldPath as a
String or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static String |
Documents.getString(Document document,
FieldPath fieldPath,
String defaultValue)
Returns the value at the specified fieldPath as a
String or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static String |
Documents.getString(Document document,
String fieldPath,
String defaultValue)
Returns the value at the specified fieldPath as a
String or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static String |
Documents.getString(Document document,
String fieldPath,
String defaultValue)
Returns the value at the specified fieldPath as a
String or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTime |
Documents.getTime(Document document,
FieldPath fieldPath,
OTime defaultValue)
Returns the value at the specified fieldPath as a
OTime or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTime |
Documents.getTime(Document document,
FieldPath fieldPath,
OTime defaultValue)
Returns the value at the specified fieldPath as a
OTime or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTime |
Documents.getTime(Document document,
String fieldPath,
OTime defaultValue)
Returns the value at the specified fieldPath as a
OTime or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTime |
Documents.getTime(Document document,
String fieldPath,
OTime defaultValue)
Returns the value at the specified fieldPath as a
OTime or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTimestamp |
Documents.getTimestamp(Document document,
FieldPath fieldPath,
OTimestamp defaultValue)
Returns the value at the specified fieldPath as a
OTimestamp or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTimestamp |
Documents.getTimestamp(Document document,
FieldPath fieldPath,
OTimestamp defaultValue)
Returns the value at the specified fieldPath as a
OTimestamp or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTimestamp |
Documents.getTimestamp(Document document,
String fieldPath,
OTimestamp defaultValue)
Returns the value at the specified fieldPath as a
OTimestamp or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static OTimestamp |
Documents.getTimestamp(Document document,
String fieldPath,
OTimestamp defaultValue)
Returns the value at the specified fieldPath as a
OTimestamp or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Value.Type |
Types.getTypeForEventType(DocumentReader.EventType event)
Returns the
Type for the specified EventType . |
static String |
Types.getTypeTag(Value.Type type) |
static String |
Types.getTypeTag(Value value) |
static Value |
Documents.getValue(Document document,
FieldPath fieldPath,
Value defaultValue)
Returns the value at the specified fieldPath as a
Value or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Value |
Documents.getValue(Document document,
FieldPath fieldPath,
Value defaultValue)
Returns the value at the specified fieldPath as a
Value or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Value |
Documents.getValue(Document document,
String fieldPath,
Value defaultValue)
Returns the value at the specified fieldPath as a
Value or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static Value |
Documents.getValue(Document document,
String fieldPath,
Value defaultValue)
Returns the value at the specified fieldPath as a
Value or the
specified defaultValue if the specified FieldPath does not
exist in the document. |
static boolean |
Types.isExtendedType(Value.Type type) |
static boolean |
Types.isExtendedType(Value value) |
static BigDecimal |
Values.parseBigDecimal(String s)
Converts a string to BigDecimal object.
|
static ByteBuffer |
Values.parseBinary(String s)
Converts a base-64 encoded string to ByteBuffer.
|
static String |
Fields.quoteFieldName(String fieldName) |
static String |
Fields.unquoteFieldName(String fieldName) |
static void |
Documents.writeReaderToBuilder(DocumentReader reader,
DocumentBuilder builder)
|
static void |
Documents.writeReaderToBuilder(DocumentReader reader,
DocumentBuilder builder)
|
Constructor and Description |
---|
BaseFieldProjector(Collection<FieldPath> includedPaths) |
BaseFieldProjector(FieldPath... includedPaths) |
BaseFieldProjector(String... includedPaths) |
DocumentReaderWithProjection(DocumentReader reader,
FieldProjector projection) |
DocumentReaderWithProjection(DocumentReader reader,
FieldProjector projection) |
FieldProjector(Collection<FieldPath> includedPaths) |
FieldProjector(FieldPath... includedPaths) |
FieldProjector(String... includedPaths) |
Copyright © 2015–2019 MapR Technologies, Inc.. All rights reserved.