Uses of Interface
net.ontopia.persistence.proxy.FieldHandlerIF
Packages that use FieldHandlerIF
Package
Description
An object-relational mapping framework.
Object model for representing SQL queries.
-
Uses of FieldHandlerIF in net.ontopia.persistence.proxy
Subinterfaces of FieldHandlerIF in net.ontopia.persistence.proxyModifier and TypeInterfaceDescriptioninterfaceINTERNAL: 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 FieldHandlerIFModifier and TypeClassDescriptionclassINTERNAL: An abstract field info class containing the common behaviour for FieldInfoIFs.classINTERNAL: A field that references an aggregate class.classINTERNAL: 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.classINTERNAL: A field that represents the identity of instances of a class.classINTERNAL: The indicator field handler implementation that is able to...classINTERNAL: A field that references a primitive value class.classINTERNAL: A field that references objects.Fields in net.ontopia.persistence.proxy declared as FieldHandlerIFMethods in net.ontopia.persistence.proxy that return FieldHandlerIFModifier and TypeMethodDescriptionprotected 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 FieldHandlerIFModifier and TypeMethodDescriptionstatic 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 FieldHandlerIFModifier and TypeFieldDescriptionprotected static final FieldHandlerIFSQLColumns.DEFAULT_FIELD_HANDLERprotected static final FieldHandlerIFSQLFunction.DEFAULT_FIELD_HANDLERprotected static final FieldHandlerIFSQLVerbatim.DEFAULT_FIELD_HANDLERprotected static final 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 FieldHandlerIFModifier and TypeMethodDescriptionSQLColumns.getFieldHandler()INTERNAL: Returns the field handler for the columns.SQLFunction.getFieldHandler()SQLNull.getFieldHandler()SQLParameter.getFieldHandler()SQLPrimitive.getFieldHandler()SQLTuple.getFieldHandler()SQLValueIF.getFieldHandler()INTERNAL: Returns the field handler for the columns.SQLValueReference.getFieldHandler()SQLVerbatim.getFieldHandler()INTERNAL: Returns the field handler for the columns.Methods in net.ontopia.persistence.query.sql with parameters of type FieldHandlerIFModifier and TypeMethodDescriptionvoidSQLColumns.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 FieldHandlerIFModifierConstructorDescriptionCollectionParameterProcessor(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)