Uses of Class
oracle.nosql.driver.values.FieldValue
- 
Packages that use FieldValue 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 FieldValue in oracle.nosql.driver
Methods in oracle.nosql.driver that return FieldValue Modifier and Type Method Description FieldValueFieldRange. getEnd()Returns the FieldValue that defines upper bound of the range, or null if no upper bound is enforced.FieldValueFieldRange. getStart()Returns the FieldValue that defines lower bound of the range, or null if no lower bound is enforced.static FieldValueNson. readFieldValue(oracle.nosql.driver.util.ByteInputStream in)Methods in oracle.nosql.driver that return types with arguments of type FieldValue Modifier and Type Method Description Iterator<Map.Entry<String,FieldValue>>FreeFormTags. iterator()Methods in oracle.nosql.driver with parameters of type FieldValue Modifier and Type Method Description static intNson. getSerializedSize(FieldValue value)FieldRangeFieldRange. setEnd(FieldValue value, boolean isInclusive)Sets the end value of the range to the specified value.FieldRangeFieldRange. setStart(FieldValue value, boolean isInclusive)Sets the start value of the range to the specified value.static voidNson. writeFieldValue(oracle.nosql.driver.util.ByteOutputStream out, FieldValue value) - 
Uses of FieldValue in oracle.nosql.driver.ops
Methods in oracle.nosql.driver.ops that return FieldValue Modifier and Type Method Description FieldValuePutResult. getGeneratedValue()Returns the value generated if the operation created a new value.FieldValueWriteMultipleResult.OperationResult. getGeneratedValue()Returns the value generated if the operation created a new value.Methods in oracle.nosql.driver.ops that return types with arguments of type FieldValue Modifier and Type Method Description Map<String,FieldValue>PreparedStatement. getVariables()Returns the map of variables to use for a prepared query with variables.Methods in oracle.nosql.driver.ops with parameters of type FieldValue Modifier and Type Method Description PreparedStatementPreparedStatement. setVariable(int pos, FieldValue value)Binds an external variable to a given value.PreparedStatementPreparedStatement. setVariable(String name, FieldValue value)Binds an external variable to a given value. - 
Uses of FieldValue in oracle.nosql.driver.values
Subclasses of FieldValue in oracle.nosql.driver.values Modifier and Type Class Description classArrayValueArrayValue represents an array ofFieldValueinstances.classBinaryValueAFieldValueinstance representing a binary value.classBooleanValueAFieldValueinstance representing a boolean value.classDoubleValueAFieldValueinstance representing a double value.classIntegerValueAFieldValueinstance representing an integer value.classJsonNullValueAFieldValueinstance representing an explicit JSON null value in a JSON object or array.classLongValueAFieldValueinstance representing a long value.classMapValueMapValue represents a row in a NoSQL Database table.classNullValueAFieldValueinstance representing a null or missing value in a fully-typed schema.classNumberValueAFieldValueinstance representing an arbitrary-precision numeric value.classStringValueAFieldValueinstance representing a string value.classTimestampValueAFieldValueinstance representing a timestamp value.Methods in oracle.nosql.driver.values that return FieldValue Modifier and Type Method Description static FieldValueFieldValue. createFromJson(InputStream jsonInput, JsonOptions options)Constructs a new FieldValue instance based on JSON read from the InputStream provided.static FieldValueFieldValue. createFromJson(Reader jsonInput, JsonOptions options)Constructs a new FieldValue instance based on JSON read from the Reader provided.static FieldValueFieldValue. createFromJson(String jsonInput, JsonOptions options)Constructs a new FieldValue instance based on the JSON string provided.static FieldValueJsonUtils. createValueFromJson(InputStream jsonInput, JsonOptions options)static FieldValueJsonUtils. createValueFromJson(Reader jsonInput, JsonOptions options)static FieldValueJsonUtils. createValueFromJson(String jsonInput, JsonOptions options)FieldValueArrayValue. get(int index)Returns the field at the specified index.FieldValueMapValue. get(String name)Returns the field the specified name, or null if the field does not exist.FieldValueFieldValueCreator. getCurrentValue()Returns the current FieldValue if availableFieldValueArrayValue. remove(int index)Removes the element at the specified position, shifting any subsequent elements to the left.FieldValueMapValue. remove(String name)Removes the named field if it exists.FieldValueArrayValue. set(int index, boolean value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, byte[] value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, double value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, int value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, long value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, String value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, BigDecimal value)Replaces the element at the specified position with the new value.FieldValueArrayValue. set(int index, FieldValue value)Replaces the element at the specified position with the new value.Methods in oracle.nosql.driver.values that return types with arguments of type FieldValue Modifier and Type Method Description Set<Map.Entry<String,FieldValue>>MapValue. entrySet()Returns aSetof entries based on the underlying map that holds the values.Map<String,FieldValue>MapValue. getMap()Returns a liveMapof the MapValue state.Iterator<FieldValue>ArrayValue. iterator()Iterator<Map.Entry<String,FieldValue>>MapValue. iterator()Returns an iterator over the entry set.Collection<FieldValue>MapValue. values()Returns aCollectionofFieldValueinstances contained in this map.Methods in oracle.nosql.driver.values with parameters of type FieldValue Modifier and Type Method Description ArrayValueArrayValue. add(int index, FieldValue value)Inserts the field at the specified index.ArrayValueArrayValue. add(FieldValue value)Adds the field to the end of the arrayintArrayValue. compareTo(FieldValue other)intBinaryValue. compareTo(FieldValue other)Returns 0 if the two values are equal in terms of length and byte content, otherwise it returns -1.intBooleanValue. compareTo(FieldValue other)intDoubleValue. compareTo(FieldValue other)intEmptyValue. compareTo(FieldValue other)intIntegerValue. compareTo(FieldValue other)intJsonNullValue. compareTo(FieldValue other)intLongValue. compareTo(FieldValue other)intMapValue. compareTo(FieldValue other)intNullValue. compareTo(FieldValue other)intNumberValue. compareTo(FieldValue other)intStringValue. compareTo(FieldValue other)intTimestampValue. compareTo(FieldValue other)static voidFieldValueEventHandler. generate(FieldValue value, FieldValueEventHandler handler)Generates events from aFieldValueinstance sending them to theFieldValueEventHandlerprovided.static voidFieldValueEventHandler. generate(FieldValue value, FieldValueEventHandler handler, boolean skip)Generates events from aFieldValueinstance sending them to theFieldValueEventHandlerprovided.MapValueMapValue. put(String name, FieldValue value)Sets the named field.FieldValueArrayValue. set(int index, FieldValue value)Replaces the element at the specified position with the new value.Method parameters in oracle.nosql.driver.values with type arguments of type FieldValue Modifier and Type Method Description ArrayValueArrayValue. addAll(int index, Iterator<? extends FieldValue> iter)Inserts all of the elements in the specified Iterator into the array, starting at the specified position.ArrayValueArrayValue. addAll(int index, Stream<? extends FieldValue> stream)Inserts all of the elements in the specified Stream into the array, starting at the specified position.ArrayValueArrayValue. addAll(Iterator<? extends FieldValue> iter)Adds all of the values in the Iterator to the end of the array in the order they are returned by the iterator.ArrayValueArrayValue. addAll(Stream<? extends FieldValue> stream)Adds all of the values in the Stream to the end of the array in the order they are returned by the stream.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. 
 -