Uses of Class
oracle.nosql.driver.values.MapValue
-
Packages that use MapValue Package Description oracle.nosql.driver Contains the public API for using the Oracle NoSQL Database as well as configuration and common parameter classes used in database operations.oracle.nosql.driver.ops Contains the input and response classes used for Oracle NoSQL Database operations.oracle.nosql.driver.values The classes in this package are used to represent and manipulate data in the Oracle NoSQL Database. -
-
Uses of MapValue in oracle.nosql.driver
Methods in oracle.nosql.driver with parameters of type MapValue Modifier and Type Method Description voidStatsControl.StatsHandler. accept(MapValue jsonStats)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
Methods in oracle.nosql.driver.ops that return MapValue Modifier and Type Method Description MapValueDeleteResult. getExistingValue()Returns the existing row value if available.MapValuePutResult. getExistingValue()Returns the existing row value if available.MapValueWriteMultipleResult.OperationResult. getExistingValue()Returns the previous row value associated with the key if available.MapValueDeleteRequest. getKey()Returns the key of the row to be deleted.MapValueGetRequest. getKey()Returns the primary key used for the operation.MapValueMultiDeleteRequest. getKey()Returns the key to be used for the operation.MapValueGetResult. getValue()Returns the value of the returned row, or null if the row does not existMapValuePutRequest. getValue()Returns the value of the row to be used.Methods in oracle.nosql.driver.ops that return types with arguments of type MapValue Modifier and Type Method Description List<MapValue>QueryResult. getResults()Returns a list of results for the query.Iterator<MapValue>QueryIterableResult. iterator()Returns an iterator over all results of a query.Methods in oracle.nosql.driver.ops with parameters of type MapValue Modifier and Type Method Description DeleteRequestDeleteRequest. setKey(MapValue key)Sets the key to use for the delete operation.GetRequestGetRequest. setKey(MapValue key)Sets the primary key used for the get operation.MultiDeleteRequestMultiDeleteRequest. setKey(MapValue key)Sets the key to be used for the operation.PutRequestPutRequest. setValue(MapValue value)Sets the value to use for the put operation. -
Uses of MapValue in oracle.nosql.driver.values
Methods in oracle.nosql.driver.values that return MapValue Modifier and Type Method Description MapValueMapValue. addAll(Iterator<Map.Entry<String,FieldValue>> iter)Inserts all of the entries in the specified iterator into the map.MapValueMapValue. addAll(Stream<Map.Entry<String,FieldValue>> stream)Inserts all of the entries in the specified stream into the map.MapValueFieldValue. asMap()Casts the object to MapValue.MapValueMapValue. put(String name, boolean value)Sets the named field as a BooleanValue.MapValueMapValue. put(String name, byte[] value)Sets the named field as a BinaryValue.MapValueMapValue. put(String name, double value)Sets the named field as a DoubleValue.MapValueMapValue. put(String name, int value)Sets the named field as an IntegerValue.MapValueMapValue. put(String name, long value)Sets the named field as a LongValue.MapValueMapValue. put(String name, String value)Sets the named field as a StringValue.MapValueMapValue. put(String name, BigDecimal value)Sets the named field as a NumberValue.MapValueMapValue. put(String name, Timestamp value)Sets the named field as a TimestampValue.MapValueMapValue. put(String name, FieldValue value)Sets the named field.MapValueMapValue. putFromJson(String name, String jsonString, JsonOptions options)Sets the named field based on the JSON string provided.Methods in oracle.nosql.driver.values that return types with arguments of type MapValue Modifier and Type Method Description Iterator<MapValue>JsonReader. iterator()Returns an Iterator<MapValue> over the source provided.Methods in oracle.nosql.driver.values with parameters of type MapValue Modifier and Type Method Description FieldValueFieldFinder. find(MapValue map)Looks for the current path in a MapValue.static FieldValueFieldFinder. find(MapValue map, String path)Looks for a path in a MapValue.static voidFieldValueEventHandler. generateForMap(MapValue map, FieldValueEventHandler handler, boolean skip)Generates events forMapValuesending them to the specifiedFieldValueEventHandler.
-