Uses of Interface
oracle.nosql.driver.values.FieldValueEventHandler
-
Packages that use FieldValueEventHandler 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.values The classes in this package are used to represent and manipulate data in the Oracle NoSQL Database. -
-
Uses of FieldValueEventHandler in oracle.nosql.driver
Methods in oracle.nosql.driver with parameters of type FieldValueEventHandler Modifier and Type Method Description static voidNson. generateEventsFromNson(FieldValueEventHandler handler, oracle.nosql.driver.util.ByteInputStream in, boolean skip)Reads NSON from the input stream and generates events calling the providedFieldValueEventHandlerinstance. -
Uses of FieldValueEventHandler in oracle.nosql.driver.values
Fields in oracle.nosql.driver.values declared as FieldValueEventHandler Modifier and Type Field Description static FieldValueEventHandlerFieldValueEventHandler. nullHandlerMethods in oracle.nosql.driver.values with parameters of type FieldValueEventHandler Modifier and Type Method Description 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.static voidJsonUtils. generateEventsFromJson(FieldValueEventHandler handler, com.fasterxml.jackson.core.JsonParser jp, boolean getNext, JsonOptions options)GeneratesFieldValueEventHandlerevents from JSON input.static voidFieldValueEventHandler. generateForArray(ArrayValue array, FieldValueEventHandler handler, boolean skip)Generates events forArrayValuesending them to the specifiedFieldValueEventHandler.static voidFieldValueEventHandler. generateForMap(MapValue map, FieldValueEventHandler handler, boolean skip)Generates events forMapValuesending them to the specifiedFieldValueEventHandler.Constructors in oracle.nosql.driver.values with parameters of type FieldValueEventHandler Constructor Description PathFinder(FieldValueEventHandler handler, String path)A convenience constructor for a single path search using a "." separated path, where the components do not contain the "." character.PathFinder(FieldValueEventHandler handler, String... components)A constructor for a single-path search, where the path is expressed as an array of Strings using a variable number of stringsPathFinder(FieldValueEventHandler handler, List<String[]> paths)Constructs a PathFinder instance to search for multiple paths in a single pass (in the samePathFinder.find(oracle.nosql.driver.util.ByteInputStream, oracle.nosql.driver.values.PathFinder.PathFinderCallback)call) Example
-