Uses of Class
oracle.nosql.driver.values.MapValue
Package
Description
Contains the public API for using the Oracle NoSQL Database
as well as configuration and common parameter classes used in
database operations.
Contains the input and response classes used for Oracle NoSQL
Database operations.
The classes in this package are used to represent and manipulate data in the
Oracle NoSQL Database.
-
Uses of MapValue in oracle.nosql.driver
Modifier and TypeMethodDescriptionstatic MapValue
Nson.readNsonMap
(oracle.nosql.driver.util.ByteInputStream in) Reads a MapValue from theByteInputStream
Modifier and TypeMethodDescriptionvoid
Stats are available in a MapValue instance that can be searched or rendered in JSON format usingFieldValue.toString()
orFieldValue.toJson()
. -
Uses of MapValue in oracle.nosql.driver.ops
Modifier and TypeMethodDescriptionDeleteResult.getExistingValue()
Returns the existing row value if available.PutResult.getExistingValue()
Returns the existing row value if available.WriteMultipleResult.OperationResult.getExistingValue()
Returns the previous row value associated with the key if available.DeleteRequest.getKey()
Returns the key of the row to be deleted.GetRequest.getKey()
Returns the primary key used for the operation.MultiDeleteRequest.getKey()
Returns the key to be used for the operation.GetResult.getValue()
Returns the value of the returned row, or null if the row does not existPutRequest.getValue()
Returns the value of the row to be used.Modifier and TypeMethodDescriptionQueryResult.getResults()
Returns a list of results for the query.QueryIterableResult.iterator()
Returns an iterator over all results of a query.Modifier and TypeMethodDescriptionSets the key to use for the delete operation.Sets the primary key used for the get operation.Sets the key to be used for the operation.Sets the value to use for the put operation. -
Uses of MapValue in oracle.nosql.driver.values
Modifier and TypeMethodDescriptionMapValue.addAll
(Iterator<Map.Entry<String, FieldValue>> iter) Inserts all of the entries in the specified iterator into the map.MapValue.addAll
(Stream<Map.Entry<String, FieldValue>> stream) Inserts all of the entries in the specified stream into the map.FieldValue.asMap()
Casts the object to MapValue.Sets the named field as a BooleanValue.Sets the named field as a BinaryValue.Sets the named field as a DoubleValue.Sets the named field as an IntegerValue.Sets the named field as a LongValue.Sets the named field as a StringValue.MapValue.put
(String name, BigDecimal value) Sets the named field as a NumberValue.Sets the named field as a TimestampValue.MapValue.put
(String name, FieldValue value) Sets the named field.MapValue.putFromJson
(String name, String jsonString, JsonOptions options) Sets the named field based on the JSON string provided.Modifier and TypeMethodDescriptionJsonReader.iterator()
Returns an Iterator<MapValue> over the source provided.