Uses of Interface
net.ontopia.persistence.proxy.FieldHandlerIF
-
Packages that use FieldHandlerIF Package Description net.ontopia.persistence.proxy An object-relational mapping framework.net.ontopia.persistence.query.sql Object model for representing SQL queries. -
-
Uses of FieldHandlerIF in net.ontopia.persistence.proxy
Subinterfaces of FieldHandlerIF in net.ontopia.persistence.proxy Modifier and Type Interface Description interfaceFieldInfoIFINTERNAL: A field descriptor-like class that is used by the RDBMS proxy implementation to access the information it needs about the object relational field descriptor in an optimized manner.Classes in net.ontopia.persistence.proxy that implement FieldHandlerIF Modifier and Type Class Description classAbstractFieldInfoINTERNAL: An abstract field info class containing the common behaviour for FieldInfoIFs.classAggregateFieldInfoINTERNAL: A field that references an aggregate class.classDefaultFieldHandlerINTERNAL: The default field handler implementation that is able to read values from result sets and bind values in prepared statements without any particular knowledge about fields.classIdentityFieldInfoINTERNAL: A field that represents the identity of instances of a class.classIndicatorFieldHandlerINTERNAL: The indicator field handler implementation that is able to...classPrimitiveFieldInfoINTERNAL: A field that references a primitive value class.classReferenceFieldInfoINTERNAL: A field that references objects.Fields in net.ontopia.persistence.proxy declared as FieldHandlerIF Modifier and Type Field Description protected FieldHandlerIFIndicatorFieldHandler. common_handlerMethods in net.ontopia.persistence.proxy that return FieldHandlerIF Modifier and Type Method Description protected FieldHandlerIFIndicatorFieldHandler. getCommonFieldHandler()protected FieldHandlerIFQueryDescriptor. getFieldHandler(ObjectRelationalMappingIF mapping, Class klass)protected FieldHandlerIF[]QueryDescriptor. getParameterHandlers(ObjectRelationalMappingIF mapping, Class[] params)protected FieldHandlerIFQueryDescriptor. getSelectFieldHandler(ObjectRelationalMappingIF mapping, net.ontopia.persistence.proxy.QueryDescriptor.SelectField select)protected FieldHandlerIF[]QueryDescriptor. getSelectFieldHandlers(ObjectRelationalMappingIF mapping, net.ontopia.persistence.proxy.QueryDescriptor.SelectField[] selects)Methods in net.ontopia.persistence.proxy with parameters of type FieldHandlerIF Modifier and Type Method Description static int[]FieldUtils. getColumnOffsets(FieldHandlerIF[] fhandlers, int start)INTERNAL: Utility method that creates an int array containing the result set index for which the field handler should start reading.static int[]FieldUtils. getResultSetOffsets(FieldHandlerIF[] fhandlers)INTERNAL: Utility method that creates an int array containing the result set index for which the field handler should start reading. -
Uses of FieldHandlerIF in net.ontopia.persistence.query.sql
Fields in net.ontopia.persistence.query.sql declared as FieldHandlerIF Modifier and Type Field Description protected static FieldHandlerIFSQLColumns. DEFAULT_FIELD_HANDLERprotected static FieldHandlerIFSQLFunction. DEFAULT_FIELD_HANDLERprotected static FieldHandlerIFSQLVerbatim. DEFAULT_FIELD_HANDLERprotected static FieldHandlerIFSQLVerbatimExpression. DEFAULT_FIELD_HANDLERprotected FieldHandlerIFSQLColumns. fhandlerprotected FieldHandlerIFSQLFunction. fhandlerprotected FieldHandlerIFSQLNull. fhandlerprotected FieldHandlerIFSQLParameter. fhandlerprotected FieldHandlerIFSQLPrimitive. fhandlerprotected FieldHandlerIFSQLTuple. fhandlerprotected FieldHandlerIFSQLVerbatim. fhandlerprotected FieldHandlerIFSQLVerbatimExpression. fhandlerprotected FieldHandlerIF[]CollectionParameterProcessor. param_fieldsprotected FieldHandlerIF[]DefaultParameterProcessor. param_fieldsprotected FieldHandlerIF[]SQLStatement. select_fieldsMethods in net.ontopia.persistence.query.sql that return FieldHandlerIF Modifier and Type Method Description FieldHandlerIFSQLColumns. getFieldHandler()INTERNAL: Returns the field handler for the columns.FieldHandlerIFSQLFunction. getFieldHandler()FieldHandlerIFSQLNull. getFieldHandler()FieldHandlerIFSQLParameter. getFieldHandler()FieldHandlerIFSQLPrimitive. getFieldHandler()FieldHandlerIFSQLTuple. getFieldHandler()FieldHandlerIFSQLValueIF. getFieldHandler()INTERNAL: Returns the field handler for the columns.FieldHandlerIFSQLValueReference. getFieldHandler()FieldHandlerIFSQLVerbatim. getFieldHandler()INTERNAL: Returns the field handler for the columns.Methods in net.ontopia.persistence.query.sql with parameters of type FieldHandlerIF Modifier and Type Method Description voidSQLColumns. setFieldHandler(FieldHandlerIF fhandler)voidSQLFunction. setFieldHandler(FieldHandlerIF fhandler)voidSQLNull. setFieldHandler(FieldHandlerIF fhandler)voidSQLParameter. setFieldHandler(FieldHandlerIF fhandler)voidSQLPrimitive. setFieldHandler(FieldHandlerIF fhandler)voidSQLTuple. setFieldHandler(FieldHandlerIF fhandler)voidSQLValueIF. setFieldHandler(FieldHandlerIF fhandler)INTERNAL: Sets the field handler for the value.voidSQLValueReference. setFieldHandler(FieldHandlerIF fhandler)voidSQLVerbatim. setFieldHandler(FieldHandlerIF fhandler)Constructors in net.ontopia.persistence.query.sql with parameters of type FieldHandlerIF Constructor Description CollectionParameterProcessor(FieldHandlerIF[] param_fields, String[] param_names, int[] coll_indexes, int[] param_offsets)DefaultParameterProcessor(FieldHandlerIF[] param_fields, String[] param_names)SQLStatement(String sql, FieldHandlerIF[] select_fields, ParameterProcessorIF param_processor)
-