Uses of Interface
oracle.kv.table.FieldDef
- 
Packages that use FieldDef Package Description oracle.kv.hadoop.hive.table Support for executing Hive queries against data written to an Oracle NoSQL Database via the Table API.oracle.kv.query This package contains the majority of the public API for using Oracle NoSQL Database query language.oracle.kv.table Table support for Oracle NoSQL Database. - 
- 
Uses of FieldDef in oracle.kv.hadoop.hive.table
Methods in oracle.kv.hadoop.hive.table with parameters of type FieldDef Modifier and Type Method Description static booleanTableFieldTypeEnum. kvHiveTypesMatch(FieldDef kvFieldDef, TypeInfo hiveColumnType) - 
Uses of FieldDef in oracle.kv.query
Methods in oracle.kv.query that return FieldDef Modifier and Type Method Description FieldDefPreparedStatement. getVariableType(String variableName)Returns the type of the given variableName ornullif it doesn't exist.Methods in oracle.kv.query that return types with arguments of type FieldDef Modifier and Type Method Description Map<String,FieldDef>PreparedStatement. getVariableTypes()Returns the types of the variables. - 
Uses of FieldDef in oracle.kv.table
Subinterfaces of FieldDef in oracle.kv.table Modifier and Type Interface Description interfaceAnyAtomicDefAnyAtomicDef is the type that contains all kinds of atomic values.interfaceAnyDefAnyDef is the most generic data type; it contains all kinds of values.interfaceAnyJsonAtomicDefAnyJsonAtomicDef is the type that contains all kinds of atomic values that appear in JSON documents.interfaceAnyRecordDefAnyRecordDef is the type that contains all kinds of record values.interfaceArrayDefArrayDef is an extension ofFieldDefto encapsulate an array of values.interfaceBinaryDefBinaryDef is an extension ofFieldDefto encapsulate a Binary type.interfaceBooleanDefBooleanDef is an extension ofFieldDefto encapsulate a Boolean.interfaceDoubleDefDoubleDef is an extension ofFieldDefto encapsulate the Double type.interfaceEnumDefEnumDef is a extension ofFieldDefto support an enumeration type.interfaceFixedBinaryDefFixedBinaryDef is an extension ofFieldDefto encapsulate a fixed length binary value.interfaceFloatDefFloatDef is an extension ofFieldDefto encapsulate the Float type.interfaceIntegerDefIntegerDef is an extension ofFieldDefto encapsulate an Integer.interfaceJsonDefJsonDef is an extension ofFieldDefto define schemaless data modeled as JSON.interfaceLongDefLongDef is an extension ofFieldDefto encapsulate a Long.interfaceMapDefMapDef is an extension ofFieldDefto define an unordered map, where all entries are constrained to a single type.interfaceNumberDefNumberDef is an extension ofFieldDefto encapsulate the BigDecimal type.interfaceRecordDefRecordDef represents a record type, which specifies a set ofRecordValues that conform to this type.interfaceStringDefStringDef is an extension ofFieldDefto encapsulate a String.interfaceTimestampDefTimestampDef is an extension ofFieldDefto encapsulate a Timestamp type.Methods in oracle.kv.table that return FieldDef Modifier and Type Method Description FieldDefFieldDef. clone()Perform a deep copy of this FieldDef instance.FieldDefFieldRange. getDefinition()Returns the FieldDef for the field used in the range.FieldDefFieldValue. getDefinition()Returns the type associated with this value.FieldDefArrayDef. getElement()FieldDefMapDef. getElement()FieldDefFieldRange. getField()Returns the FieldDef that was used to construct this object.FieldDefRecordDef. getField(int pos)Deprecated.as of 4.2 Use getFieldDef(int)FieldDefRecordDef. getField(String name)Deprecated.as of 4.2 Use getFieldDef(String)FieldDefTable. getField(String name)Returns the named field from the table definition, or null if the field does not exist.FieldDefRecordDef. getFieldDef(int pos)Get the type of the field at the given position.FieldDefRecordDef. getFieldDef(String name)Get the type of the field with the given name.Methods in oracle.kv.table with parameters of type FieldDef Modifier and Type Method Description static FieldValueFieldValueFactory. createValueFromJson(FieldDef type, InputStream jsonStream)Creates a new value from a JSON doc (which is given as an InputStream).static FieldValueFieldValueFactory. createValueFromJson(FieldDef type, Reader jsonReader)Creates a new value from a JSON doc (which is given as a Reader).static FieldValueFieldValueFactory. createValueFromJson(FieldDef type, String jsonString)Creates a new value from a JSON doc (which is given as a String). 
 -