Uses of Class
oracle.nosql.driver.Nson.NsonSerializer

Packages that use oracle.nosql.driver.Nson.NsonSerializer
Package
Description
Contains the public API for using the Oracle NoSQL Database as well as configuration and common parameter classes used in database operations.
  • Uses of oracle.nosql.driver.Nson.NsonSerializer in oracle.nosql.driver

    Methods in oracle.nosql.driver with parameters of type oracle.nosql.driver.Nson.NsonSerializer in in
    Modifier and Type
    Method
    Description
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, boolean value)
    Write a key/value boolean map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, byte[] value)
    Write a key/value byte array map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, byte[] value, int offset, int length)
    Write a key/value byte array map field to an Nson serializer, given a specific offset and length.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, int value)
    Write a key/value integer map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, int[] value)
    Write a key/value integer array map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, long value)
    Write a key/value long map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, String value)
    Write a key/value string map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, String[] value)
    Write a key/value string array map field to an Nson serializer.
    static void
    Nson.writeMapField(oracle.nosql.driver.Nson.NsonSerializer ns, String fieldName, MapValue value)
    Write a key/value MapValue map field to an Nson serializer.