Uses of Class
org.apache.ibatis.ibator.api.IntrospectedColumn

Packages that use IntrospectedColumn
org.apache.ibatis.ibator.api Provides the main classes and interfaces used by clients of ibator. 
org.apache.ibatis.ibator.generator.ibatis2.model   
org.apache.ibatis.ibator.generator.ibatis2.sqlmap.elements   
org.apache.ibatis.ibator.internal   
org.apache.ibatis.ibator.internal.types   
org.apache.ibatis.ibator.plugins   
 

Uses of IntrospectedColumn in org.apache.ibatis.ibator.api
 

Fields in org.apache.ibatis.ibator.api with type parameters of type IntrospectedColumn
protected  java.util.List<IntrospectedColumn> IntrospectedTable.baseColumns
           
protected  java.util.List<IntrospectedColumn> IntrospectedTable.blobColumns
           
protected  java.util.List<IntrospectedColumn> IntrospectedTable.primaryKeyColumns
           
 

Methods in org.apache.ibatis.ibator.api that return IntrospectedColumn
 IntrospectedColumn IntrospectedTable.getColumn(java.lang.String columnName)
           
 

Methods in org.apache.ibatis.ibator.api that return types with arguments of type IntrospectedColumn
 java.util.List<IntrospectedColumn> IntrospectedTable.getAllColumns()
          Returns all columns in the table (for use by the select by primary key and select by example with BLOBs methods)
 java.util.List<IntrospectedColumn> IntrospectedTable.getBaseColumns()
           
 java.util.List<IntrospectedColumn> IntrospectedTable.getBLOBColumns()
           
 java.util.List<IntrospectedColumn> IntrospectedTable.getNonBLOBColumns()
          Returns all columns except BLOBs (for use by the select by example without BLOBs method)
 java.util.List<IntrospectedColumn> IntrospectedTable.getNonPrimaryKeyColumns()
           
 java.util.List<IntrospectedColumn> IntrospectedTable.getPrimaryKeyColumns()
          Returns the columns in the primary key.
 

Methods in org.apache.ibatis.ibator.api with parameters of type IntrospectedColumn
 void IntrospectedTable.addColumn(IntrospectedColumn introspectedColumn)
           
 FullyQualifiedJavaType JavaTypeResolver.calculateJavaType(IntrospectedColumn introspectedColumn)
          Calculates and returns the Java type that should be associated with this column based on the jdbc type, length, and scale of the column.
 boolean IbatorPluginAdapter.modelFieldGenerated(Field field, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
           
 boolean IbatorPlugin.modelFieldGenerated(Field field, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
          This method is called after the field is generated for a specific column in a table.
 boolean IbatorPluginAdapter.modelGetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
           
 boolean IbatorPlugin.modelGetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
          This method is called after the getter, or accessor, method is generated for a specific column in a table.
 boolean IbatorPluginAdapter.modelSetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
           
 boolean IbatorPlugin.modelSetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
          This method is called after the setter, or mutator, method is generated for a specific column in a table.
 

Uses of IntrospectedColumn in org.apache.ibatis.ibator.generator.ibatis2.model
 

Methods in org.apache.ibatis.ibator.generator.ibatis2.model with parameters of type IntrospectedColumn
 boolean RootClassInfo.containsProperty(IntrospectedColumn introspectedColumn)
           
 Field BaseModelClassGenerator.getJavaBeansField(IntrospectedColumn introspectedColumn)
           
 Method BaseModelClassGenerator.getJavaBeansGetter(IntrospectedColumn introspectedColumn)
           
 Method BaseModelClassGenerator.getJavaBeansSetter(IntrospectedColumn introspectedColumn)
           
 

Uses of IntrospectedColumn in org.apache.ibatis.ibator.generator.ibatis2.sqlmap.elements
 

Methods in org.apache.ibatis.ibator.generator.ibatis2.sqlmap.elements with parameters of type IntrospectedColumn
protected  XmlElement AbstractXmlElementGenerator.getSelectKey(IntrospectedColumn introspectedColumn, GeneratedKey generatedKey)
          This method should return an XmlElement for the select key used to automatically generate keys.
 

Uses of IntrospectedColumn in org.apache.ibatis.ibator.internal
 

Methods in org.apache.ibatis.ibator.internal that return IntrospectedColumn
static IntrospectedColumn IbatorObjectFactory.createIntrospectedColumn(IbatorContext ibatorContext)
           
 

Methods in org.apache.ibatis.ibator.internal with parameters of type IntrospectedColumn
 boolean IbatorPluginAggregator.modelFieldGenerated(Field field, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
           
 boolean IbatorPluginAggregator.modelGetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
           
 boolean IbatorPluginAggregator.modelSetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, IbatorPlugin.ModelClassType modelClassType)
           
 

Uses of IntrospectedColumn in org.apache.ibatis.ibator.internal.types
 

Methods in org.apache.ibatis.ibator.internal.types with parameters of type IntrospectedColumn
 FullyQualifiedJavaType JavaTypeResolverDefaultImpl.calculateJavaType(IntrospectedColumn introspectedColumn)
           
 

Uses of IntrospectedColumn in org.apache.ibatis.ibator.plugins
 

Method parameters in org.apache.ibatis.ibator.plugins with type arguments of type IntrospectedColumn
protected  void EqualsHashCodePlugin.generateEquals(TopLevelClass topLevelClass, java.util.List<IntrospectedColumn> introspectedColumns, IntrospectedTable introspectedTable)
          Generates an equals method that does a comparison of all fields.
protected  void EqualsHashCodePlugin.generateHashCode(TopLevelClass topLevelClass, java.util.List<IntrospectedColumn> introspectedColumns, IntrospectedTable introspectedTable)
          Generates a hashCode method that multiplies the hashCodes of all fields.