A B C D E F G H I J L M N O P Q R S T U V W X

G

generate(ProgressCallback) - Method in class org.mybatis.generator.api.MyBatisGenerator
This is the main method for generating code.
generate(ProgressCallback, Set<String>) - Method in class org.mybatis.generator.api.MyBatisGenerator
This is the main method for generating code.
generate(ProgressCallback, Set<String>, Set<String>) - Method in class org.mybatis.generator.api.MyBatisGenerator
This is the main method for generating code.
generateBaseColumnList() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateBaseColumnList() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the SQL base column list element.
generateBaseColumnList() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateBaseRecordClass() - Method in class org.mybatis.generator.internal.rules.ConditionalModelRules
Generate a base record if there are any base columns, or if there is only one primary key coulmn (in which case we will not generate a primary key class), or if there is only one BLOB column (in which case we will not generate a record with BLOBs class).
generateBaseRecordClass() - Method in class org.mybatis.generator.internal.rules.FlatModelRules
We always generate a base record in the flat model.
generateBaseRecordClass() - Method in class org.mybatis.generator.internal.rules.HierarchicalModelRules
Implements the rule for generating a base record.
generateBaseRecordClass() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating a base record.
generateBaseRecordClass() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateBaseResultMap() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the result map without BLOBs.
generateBaseResultMap() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the result map without BLOBs.
generateBaseResultMap() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateBlobColumnList() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateBlobColumnList() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the SQL blob column list element.
generateBlobColumnList() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateCountByExample() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateCountByExample() - Method in interface org.mybatis.generator.internal.rules.Rules
 
generateCountByExample() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateDeleteByExample() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the delete by example SQL Map element and DAO method.
generateDeleteByExample() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the delete by example SQL Map element and DAO method.
generateDeleteByExample() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateDeleteByPrimaryKey() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the delete by primary key SQL Map element and DAO method.
generateDeleteByPrimaryKey() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the delete by primary key SQL Map element and DAO method.
generateDeleteByPrimaryKey() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
GeneratedFile - Class in org.mybatis.generator.api
Abstract class that holds information common to all generated files.
GeneratedFile(String) - Constructor for class org.mybatis.generator.api.GeneratedFile
 
GeneratedJavaFile - Class in org.mybatis.generator.api
 
GeneratedJavaFile(CompilationUnit, String, String, JavaFormatter) - Constructor for class org.mybatis.generator.api.GeneratedJavaFile
Default constructor
GeneratedJavaFile(CompilationUnit, String, JavaFormatter) - Constructor for class org.mybatis.generator.api.GeneratedJavaFile
 
GeneratedKey - Class in org.mybatis.generator.config
This class specifies that a key is auto-generated, either as an identity column (post insert), or as some other query like a sequences (pre insert).
GeneratedKey(String, String, boolean, String) - Constructor for class org.mybatis.generator.config.GeneratedKey
 
GeneratedXmlFile - Class in org.mybatis.generator.api
 
GeneratedXmlFile(Document, String, String, String, boolean, XmlFormatter) - Constructor for class org.mybatis.generator.api.GeneratedXmlFile
 
generateEquals(TopLevelClass, List<IntrospectedColumn>, IntrospectedTable) - Method in class org.mybatis.generator.plugins.EqualsHashCodePlugin
Generates an equals method that does a comparison of all fields.
generateExampleClass() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating an example class.
generateExampleClass() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating an example class.
generateExampleClass() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateFiles(ProgressCallback, List<GeneratedJavaFile>, List<GeneratedXmlFile>, List<String>) - Method in class org.mybatis.generator.config.Context
 
generateHashCode(TopLevelClass, List<IntrospectedColumn>, IntrospectedTable) - Method in class org.mybatis.generator.plugins.EqualsHashCodePlugin
Generates a hashCode method that includes all fields.
generateInsert() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the insert SQL Map element and DAO method.
generateInsert() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the insert SQL Map element and DAO method.
generateInsert() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateInsertSelective() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the insert selective SQL Map element and DAO method.
generateInsertSelective() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the insert selective SQL Map element and DAO method.
generateInsertSelective() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateJavaClient() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateJavaClient() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating a Java client.
generateJavaClient() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateMyBatis3UpdateByExampleWhereClause() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the SQL example where clause element specifically for use in the update by example methods.
generateMyBatis3UpdateByExampleWhereClause() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the SQL example where clause element specifically for use in the update by example methods.
generateMyBatis3UpdateByExampleWhereClause() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generatePrimaryKeyClass() - Method in class org.mybatis.generator.internal.rules.ConditionalModelRules
We generate a primary key if there is more than one primary key field.
generatePrimaryKeyClass() - Method in class org.mybatis.generator.internal.rules.FlatModelRules
We never generate a primary key in the flat model.
generatePrimaryKeyClass() - Method in class org.mybatis.generator.internal.rules.HierarchicalModelRules
Implements the rule for determining whether to generate a primary key class.
generatePrimaryKeyClass() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for determining whether to generate a primary key class.
generatePrimaryKeyClass() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateRecordWithBLOBsClass() - Method in class org.mybatis.generator.internal.rules.ConditionalModelRules
We generate a record with BLOBs class if there is more than one BLOB column.
generateRecordWithBLOBsClass() - Method in class org.mybatis.generator.internal.rules.FlatModelRules
We never generate a record with BLOBs class in the flat model.
generateRecordWithBLOBsClass() - Method in class org.mybatis.generator.internal.rules.HierarchicalModelRules
Implements the rule for generating a record with BLOBs.
generateRecordWithBLOBsClass() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating a record with BLOBs.
generateRecordWithBLOBsClass() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateResultMapWithBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the result map with BLOBs.
generateResultMapWithBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the result map with BLOBs.
generateResultMapWithBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateSelectByExampleWithBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the select by example with BLOBs SQL Map element and DAO method.
generateSelectByExampleWithBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the select by example with BLOBs SQL Map element and DAO method.
generateSelectByExampleWithBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateSelectByExampleWithoutBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the select by example without BLOBs SQL Map element and DAO method.
generateSelectByExampleWithoutBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the select by example without BLOBs SQL Map element and DAO method.
generateSelectByExampleWithoutBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateSelectByPrimaryKey() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the select by primary key SQL Map element and DAO method.
generateSelectByPrimaryKey() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the select by primary key SQL Map element and DAO method.
generateSelectByPrimaryKey() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateSQLExampleWhereClause() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the SQL example where clause element.
generateSQLExampleWhereClause() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the SQL example where clause element.
generateSQLExampleWhereClause() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateUpdateByExampleSelective() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateUpdateByExampleSelective() - Method in interface org.mybatis.generator.internal.rules.Rules
 
generateUpdateByExampleSelective() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateUpdateByExampleWithBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateUpdateByExampleWithBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
 
generateUpdateByExampleWithBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateUpdateByExampleWithoutBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
generateUpdateByExampleWithoutBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
 
generateUpdateByExampleWithoutBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateUpdateByPrimaryKeySelective() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the update by primary key selective SQL Map element and DAO method.
generateUpdateByPrimaryKeySelective() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the update by primary key selective SQL Map element and DAO method.
generateUpdateByPrimaryKeySelective() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateUpdateByPrimaryKeyWithBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the update by primary key with BLOBs SQL Map element and DAO method.
generateUpdateByPrimaryKeyWithBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the update by primary key with BLOBs SQL Map element and DAO method.
generateUpdateByPrimaryKeyWithBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generateUpdateByPrimaryKeyWithoutBLOBs() - Method in class org.mybatis.generator.internal.rules.BaseRules
Implements the rule for generating the update by primary key without BLOBs SQL Map element and DAO method.
generateUpdateByPrimaryKeyWithoutBLOBs() - Method in interface org.mybatis.generator.internal.rules.Rules
Implements the rule for generating the update by primary key without BLOBs SQL Map element and DAO method.
generateUpdateByPrimaryKeyWithoutBLOBs() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
generationStarted(int) - Method in interface org.mybatis.generator.api.ProgressCallback
Called to note the start of the generation phase, and to note the maximum number of startTask messages that will be sent for the generation phase.
generationStarted(int) - Method in class org.mybatis.generator.eclipse.core.callback.EclipseProgressCallback
 
generationStarted(int) - Method in class org.mybatis.generator.internal.NullProgressCallback
 
GeneratorAntTask - Class in org.mybatis.generator.ant
This is an Ant task that will run the generator.
GeneratorAntTask() - Constructor for class org.mybatis.generator.ant.GeneratorAntTask
 
GeneratorAntTask - Class in org.mybatis.generator.eclipse.ui.ant
 
GeneratorAntTask() - Constructor for class org.mybatis.generator.eclipse.ui.ant.GeneratorAntTask
 
GenericCIDAOTemplate - Class in org.mybatis.generator.codegen.ibatis2.dao.templates
 
GenericCIDAOTemplate() - Constructor for class org.mybatis.generator.codegen.ibatis2.dao.templates.GenericCIDAOTemplate
 
GenericSIDAOTemplate - Class in org.mybatis.generator.codegen.ibatis2.dao.templates
 
GenericSIDAOTemplate() - Constructor for class org.mybatis.generator.codegen.ibatis2.dao.templates.GenericSIDAOTemplate
 
getActualColumnName() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getAdapter(Object, Class) - Method in class org.mybatis.generator.eclipse.ui.content.AdapterFactory
 
getAdapterList() - Method in class org.mybatis.generator.eclipse.ui.content.AdapterFactory
 
getAlias() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getAlias() - Method in class org.mybatis.generator.config.TableConfiguration
 
getAliasedActualColumnName(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
The aliased column name for a select statement generated by the example clauses.
getAliasedActualColumnName(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
The aliased column name for a select statement generated by the example clauses.
getAliasedEscapedColumnName(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
Calculates the string to use in select phrases in SqlMaps.
getAliasedEscapedColumnName(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
Calculates the string to use in select phrases in SqlMaps.
getAliasedFullyQualifiedTableNameAtRuntime() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getAliasedFullyQualifiedTableNameAtRuntime() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getAllColumns() - Method in class org.mybatis.generator.api.IntrospectedTable
Returns all columns in the table (for use by the select by primary key and select by example with BLOBs methods)
getAnnotations() - Method in class org.mybatis.generator.api.dom.java.JavaElement
 
getAnnotations() - Method in class org.mybatis.generator.api.dom.java.Parameter
 
getArrayTypeName(ArrayType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getAttribute(String) - Method in class org.mybatis.generator.api.IntrospectedTable
 
getAttributeName() - Method in enum org.mybatis.generator.plugins.CachePlugin.CacheProperty
 
getAttributes() - Method in class org.mybatis.generator.api.dom.xml.XmlElement
 
getBaseColumnListElement() - Method in class org.mybatis.generator.codegen.ibatis2.sqlmap.elements.AbstractXmlElementGenerator
 
getBaseColumnListElement() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.AbstractXmlElementGenerator
 
getBaseColumnListId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getBaseColumns() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getBaseFile() - Method in class org.mybatis.generator.eclipse.ui.content.ConfigurationFileAdapter
 
getBaseRecordType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getBaseResultMapId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getBeginningDelimiter() - Method in class org.mybatis.generator.config.Context
 
getBlobColumnListElement() - Method in class org.mybatis.generator.codegen.ibatis2.sqlmap.elements.AbstractXmlElementGenerator
 
getBlobColumnListElement() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.AbstractXmlElementGenerator
 
getBlobColumnListId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getBLOBColumns() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getBodyLines() - Method in class org.mybatis.generator.api.dom.java.InitializationBlock
 
getBodyLines() - Method in class org.mybatis.generator.api.dom.java.Method
 
getBooleanInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getBooleanPrimitiveInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getByteInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getCamelCaseString(String, boolean) - Static method in class org.mybatis.generator.internal.util.JavaBeansUtil
 
getCatalog() - Method in class org.mybatis.generator.config.TableConfiguration
 
getCatalog() - Method in class org.mybatis.generator.internal.db.ActualTableName
 
getCharacterInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getCheckedExceptions() - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getClassPathEntries() - Method in class org.mybatis.generator.config.Configuration
 
getClasspathEntries() - Method in class org.mybatis.generator.eclipse.ui.buildpath.MyBatisContainer
 
getColumn(String) - Method in class org.mybatis.generator.api.IntrospectedTable
 
getColumn() - Method in class org.mybatis.generator.config.GeneratedKey
 
getColumnName() - Method in class org.mybatis.generator.config.ColumnOverride
 
getColumnName() - Method in class org.mybatis.generator.config.IgnoredColumn
 
getColumnOverride(String) - Method in class org.mybatis.generator.config.TableConfiguration
May return null if the column has not been overridden
getColumnOverrides() - Method in class org.mybatis.generator.config.TableConfiguration
 
getColumnRenamingRule() - Method in class org.mybatis.generator.config.TableConfiguration
 
getColumns() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderSelectByExampleWithBLOBsMethodGenerator
 
getColumns() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderSelectByExampleWithoutBLOBsMethodGenerator
 
getColumns() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderUpdateByExampleWithBLOBsMethodGenerator
 
getColumns() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderUpdateByExampleWithoutBLOBsMethodGenerator
 
getCommentGenerator() - Method in class org.mybatis.generator.config.Context
 
getCommentGeneratorConfiguration() - Method in class org.mybatis.generator.config.Context
 
getCompilationUnit() - Method in class org.mybatis.generator.api.GeneratedJavaFile
This method is required by the Eclipse Java merger.
getCompilationUnits() - Method in class org.mybatis.generator.codegen.AbstractJavaGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.ibatis2.dao.DAOGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.ibatis2.model.BaseRecordGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.ibatis2.model.ExampleGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.ibatis2.model.PrimaryKeyGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.ibatis2.model.RecordWithBLOBsGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.JavaMapperGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.SimpleJavaClientGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.SqlProviderGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.model.BaseRecordGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.model.ExampleGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.model.PrimaryKeyGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.model.RecordWithBLOBsGenerator
 
getCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.model.SimpleModelGenerator
 
getConfigfile() - Method in class org.mybatis.generator.ant.GeneratorAntTask
 
getConfigfile() - Method in class org.mybatis.generator.eclipse.ui.ant.GeneratorAntTask
 
getConfigurationType() - Method in class org.mybatis.generator.config.TypedPropertyHolder
 
getConnection(JDBCConnectionConfiguration) - Method in class org.mybatis.generator.internal.db.ConnectionFactory
 
getConnectionURL() - Method in class org.mybatis.generator.config.JDBCConnectionConfiguration
 
getConstructorClone(CommentGenerator, FullyQualifiedJavaType, IntrospectedTable) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getContent() - Method in class org.mybatis.generator.api.dom.xml.TextElement
 
getContext() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getContext() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getContext() - Method in class org.mybatis.generator.api.PluginAdapter
 
getContext() - Method in class org.mybatis.generator.codegen.AbstractGenerator
 
getContext(String) - Method in class org.mybatis.generator.config.Configuration
 
getContextIds() - Method in class org.mybatis.generator.ant.GeneratorAntTask
 
getContextIds() - Method in class org.mybatis.generator.eclipse.ui.ant.GeneratorAntTask
 
getContexts() - Method in class org.mybatis.generator.config.Configuration
 
getCountByExampleMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the count by example method.
getCountByExampleMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getCountByExampleMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getCountByExampleStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getCriteriaInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getCustomClassloader(List<String>) - Static method in class org.mybatis.generator.internal.util.ClassloaderUtility
 
getDAOImplementationType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getDAOInterfaceType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getDAOMethodNameCalculator() - Method in class org.mybatis.generator.codegen.ibatis2.dao.elements.AbstractDAOElementGenerator
 
getDatabaseDialect(String) - Static method in enum org.mybatis.generator.internal.db.DatabaseDialects
 
getDateInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getDateString() - Method in class org.mybatis.generator.internal.DefaultCommentGenerator
This method returns a formated date string to include in the Javadoc tag and XML comments.
getDefault() - Static method in class org.mybatis.generator.eclipse.ui.Activator
Returns the shared instance
getDefaultModelType() - Method in class org.mybatis.generator.config.Context
 
getDefaultValue() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getDeleteByExampleMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the delete by example method.
getDeleteByExampleMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getDeleteByExampleMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getDeleteByExampleStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getDeleteByPrimaryKeyMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the delete by primary key method.
getDeleteByPrimaryKeyMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getDeleteByPrimaryKeyMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getDeleteByPrimaryKeyStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getDeleteMethod(String, String, String) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getDescription() - Method in class org.mybatis.generator.eclipse.ui.buildpath.MyBatisContainer
 
getDirectory(String, String) - Method in interface org.mybatis.generator.api.ShellCallback
This method is called to ask the shell to resolve a project/package combination into a directory on the file system.
getDirectory(String, String) - Method in class org.mybatis.generator.eclipse.core.callback.EclipseShellCallback
 
getDirectory(String, String) - Method in class org.mybatis.generator.internal.DefaultShellCallback
 
getDocument() - Method in class org.mybatis.generator.codegen.AbstractXmlGenerator
 
getDocument() - Method in class org.mybatis.generator.codegen.ibatis2.sqlmap.SqlMapGenerator
 
getDocument() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.SimpleXMLMapperGenerator
 
getDocument() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.XMLMapperGenerator
 
getDomainObjectName() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getDomainObjectName() - Method in class org.mybatis.generator.config.TableConfiguration
 
getDoubleInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getDriverClass() - Method in class org.mybatis.generator.config.JDBCConnectionConfiguration
 
getElements() - Method in class org.mybatis.generator.api.dom.xml.XmlElement
 
getEndingDelimiter() - Method in class org.mybatis.generator.config.Context
 
getEnumConstants() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getErrors() - Method in exception org.mybatis.generator.exception.InvalidConfigurationException
 
getErrors() - Method in exception org.mybatis.generator.exception.XMLParserException
 
getEscapedColumnName(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
 
getEscapedColumnName(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
 
getExampleIncludeElement() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.AbstractXmlElementGenerator
 
getExampleMethodVisibility() - Method in class org.mybatis.generator.codegen.ibatis2.dao.elements.AbstractDAOElementGenerator
 
getExampleType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getExampleWhereClauseId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getExceptions() - Method in class org.mybatis.generator.api.dom.java.Method
 
getExtraCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.AnnotatedClientGenerator
 
getExtraCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.JavaMapperGenerator
 
getExtraCompilationUnits() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.SimpleJavaClientGenerator
 
getFieldAnnotations(FieldDeclaration) - Method in class org.mybatis.generator.eclipse.core.merge.ExistingJavaFileVisitor
 
getFieldClones(CommentGenerator, IntrospectedTable) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getFields() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getFields() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getFileCommentLines() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getFileCommentLines() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getFileCommentLines() - Method in class org.mybatis.generator.api.dom.java.TopLevelClass
 
getFileCommentLines() - Method in class org.mybatis.generator.api.dom.java.TopLevelEnumeration
 
getFileEncoding() - Method in class org.mybatis.generator.api.GeneratedJavaFile
 
getFileName() - Method in class org.mybatis.generator.api.GeneratedFile
Get the file name (without any path).
getFileName() - Method in class org.mybatis.generator.api.GeneratedJavaFile
 
getFileName() - Method in class org.mybatis.generator.api.GeneratedXmlFile
 
getFileName() - Method in class org.mybatis.generator.eclipse.ui.wizards.NewConfigFileWizardPage1
 
getFloatInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getFormattedContent(CompilationUnit) - Method in class org.mybatis.generator.api.dom.DefaultJavaFormatter
 
getFormattedContent(Document) - Method in class org.mybatis.generator.api.dom.DefaultXmlFormatter
 
getFormattedContent() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.java.Field
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.java.InitializationBlock
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getFormattedContent() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getFormattedContent(int, boolean) - Method in class org.mybatis.generator.api.dom.java.Method
 
getFormattedContent() - Method in class org.mybatis.generator.api.dom.java.Parameter
 
getFormattedContent() - Method in class org.mybatis.generator.api.dom.java.TopLevelClass
 
getFormattedContent() - Method in class org.mybatis.generator.api.dom.java.TopLevelEnumeration
 
getFormattedContent() - Method in class org.mybatis.generator.api.dom.xml.Attribute
 
getFormattedContent() - Method in class org.mybatis.generator.api.dom.xml.Document
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.xml.Element
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.xml.TextElement
 
getFormattedContent(int) - Method in class org.mybatis.generator.api.dom.xml.XmlElement
 
getFormattedContent() - Method in class org.mybatis.generator.api.GeneratedFile
This method returns the entire contents of the generated file.
getFormattedContent() - Method in class org.mybatis.generator.api.GeneratedJavaFile
 
getFormattedContent() - Method in class org.mybatis.generator.api.GeneratedXmlFile
 
getFormattedContent(CompilationUnit) - Method in interface org.mybatis.generator.api.JavaFormatter
 
getFormattedContent(Document) - Method in interface org.mybatis.generator.api.XmlFormatter
 
getFullyQualifiedJavaType() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getFullyQualifiedJavaType() - Method in class org.mybatis.generator.internal.types.JavaTypeResolverDefaultImpl.JdbcTypeInformation
 
getFullyQualifiedName() - Method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
This method returns the fully qualified name - including any generic type parameters
getFullyQualifiedTable() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getFullyQualifiedTableNameAtRuntime() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getFullyQualifiedTableNameAtRuntime() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getFullyQualifiedTableNames() - Method in class org.mybatis.generator.ant.GeneratorAntTask
 
getFullyQualifiedTableNames() - Method in class org.mybatis.generator.eclipse.ui.ant.GeneratorAntTask
 
getGeneratedCriteriaInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getGeneratedJavaFiles() - Method in class org.mybatis.generator.api.IntrospectedTable
This method should return a list of generated Java files related to this table.
getGeneratedJavaFiles() - Method in class org.mybatis.generator.codegen.ibatis2.IntrospectedTableIbatis2Java2Impl
 
getGeneratedJavaFiles() - Method in class org.mybatis.generator.codegen.mybatis3.IntrospectedTableMyBatis3Impl
 
getGeneratedKey() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getGeneratedKey() - Method in class org.mybatis.generator.config.TableConfiguration
 
getGeneratedXmlFiles() - Method in class org.mybatis.generator.api.IntrospectedTable
This method should return a list of generated XML files related to this table.
getGeneratedXmlFiles() - Method in class org.mybatis.generator.codegen.ibatis2.IntrospectedTableIbatis2Java2Impl
 
getGeneratedXmlFiles() - Method in class org.mybatis.generator.codegen.mybatis3.IntrospectedTableMyBatis3Impl
 
getGenerationSteps() - Method in class org.mybatis.generator.api.IntrospectedTable
This method should return the number of progress messages that will be send during the generation phase.
getGenerationSteps() - Method in class org.mybatis.generator.codegen.ibatis2.IntrospectedTableIbatis2Java2Impl
 
getGenerationSteps() - Method in class org.mybatis.generator.codegen.mybatis3.IntrospectedTableMyBatis3Impl
 
getGenerationSteps() - Method in class org.mybatis.generator.config.Context
 
getGeneratorPath() - Static method in class org.mybatis.generator.eclipse.ui.MyBatisGeneratorClasspathResolver
 
getGeneratorSourcePath() - Static method in class org.mybatis.generator.eclipse.ui.MyBatisGeneratorClasspathResolver
 
getGetter(Field) - Static method in class org.mybatis.generator.codegen.AbstractJavaGenerator
 
getGetterMethodName(String, FullyQualifiedJavaType) - Static method in class org.mybatis.generator.internal.util.JavaBeansUtil
JavaBeans rules: eMail > geteMail() firstName > getFirstName() URL > getURL() XAxis > getXAxis() a > getA() B > invalid - this method assumes that this is not the case.
getIbatis2SqlMapFileName() - Method in class org.mybatis.generator.api.IntrospectedTable
Calculates an SQL Map file name for the table.
getIbatis2SqlMapNamespace() - Method in class org.mybatis.generator.api.FullyQualifiedTable
This method returns a string that is the fully qualified table name, with underscores as the separator.
getIbatis2SqlMapNamespace() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getIbatis2SqlMapPackage() - Method in class org.mybatis.generator.api.IntrospectedTable
Calculates the package for the current table.
getId() - Method in class org.mybatis.generator.config.Context
 
getIdentityRetrievalStatement() - Method in enum org.mybatis.generator.internal.db.DatabaseDialects
 
getIgnoredColumnsInError() - Method in class org.mybatis.generator.config.TableConfiguration
This method returns an iterator of Strings.
getImplementationImports() - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getImplementationPackage() - Method in class org.mybatis.generator.config.JavaClientGeneratorConfiguration
 
getImportedTypes() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getImportedTypes() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getImportedTypes() - Method in class org.mybatis.generator.api.dom.java.TopLevelClass
 
getImportedTypes() - Method in class org.mybatis.generator.api.dom.java.TopLevelEnumeration
 
getImportList() - Method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
Returns a list of Strings that are the fully qualified names of this type, and any generic type argument associated with this type.
getImports() - Method in class org.mybatis.generator.eclipse.core.merge.NewJavaFileVisitor
 
getInitializationBlocks() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getInitializationString() - Method in class org.mybatis.generator.api.dom.java.Field
 
getInnerClasses() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getInnerClasses() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getInnerEnums() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getInnerEnums() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getInsertMethod(String, String, String) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getInsertMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the insert method.
getInsertMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getInsertMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getInsertSelectiveMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the insert selective method.
getInsertSelectiveMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getInsertSelectiveMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getInsertSelectiveStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getInsertStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getInstance(String, List<String>) - Static method in class org.mybatis.generator.codegen.RootClassInfo
 
getInstance() - Static method in class org.mybatis.generator.internal.db.ConnectionFactory
 
getIntegerInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getInterfaceImports() - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getInterfaceShell() - Method in class org.mybatis.generator.codegen.ibatis2.dao.DAOGenerator
 
getIntInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getIntrospectedCatalog() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getIntrospectedColumnImpl() - Method in class org.mybatis.generator.config.Context
 
getIntrospectedSchema() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getIntrospectedTable() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getIntrospectedTable() - Method in class org.mybatis.generator.codegen.AbstractGenerator
 
getIntrospectedTable() - Method in class org.mybatis.generator.internal.rules.BaseRules
 
getIntrospectedTable() - Method in interface org.mybatis.generator.internal.rules.Rules
 
getIntrospectedTable() - Method in class org.mybatis.generator.internal.rules.RulesDelegate
 
getIntrospectedTableName() - Method in class org.mybatis.generator.api.FullyQualifiedTable
 
getIntrospectionSteps() - Method in class org.mybatis.generator.config.Context
 
getJavaBeansField(IntrospectedColumn) - Method in class org.mybatis.generator.codegen.AbstractJavaGenerator
 
getJavaBeansGetter(IntrospectedColumn) - Method in class org.mybatis.generator.codegen.AbstractJavaGenerator
 
getJavaBeansSetter(IntrospectedColumn) - Method in class org.mybatis.generator.codegen.AbstractJavaGenerator
 
getJavaClientGeneratorConfiguration() - Method in class org.mybatis.generator.config.Context
 
getJavaDocLines() - Method in class org.mybatis.generator.api.dom.java.InitializationBlock
 
getJavaDocLines() - Method in class org.mybatis.generator.api.dom.java.JavaElement
 
getJavaFormatter() - Method in class org.mybatis.generator.config.Context
 
getJavaModelGeneratorConfiguration() - Method in class org.mybatis.generator.config.Context
 
getJavaProperty() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getJavaProperty(String) - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getJavaProperty() - Method in class org.mybatis.generator.config.ColumnOverride
 
getJavaType() - Method in class org.mybatis.generator.config.ColumnOverride
 
getJavaTypeResolverConfiguration() - Method in class org.mybatis.generator.config.Context
 
getJdbcConnectionConfiguration() - Method in class org.mybatis.generator.config.Context
 
getJdbcType() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getJdbcType() - Method in class org.mybatis.generator.config.ColumnOverride
 
getJdbcType(String) - Static method in class org.mybatis.generator.internal.types.JdbcTypeNameTranslator
Translates from the string representation of the type to the java.sql.Types value.
getJdbcTypeName() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getJdbcTypeName() - Method in class org.mybatis.generator.internal.types.JavaTypeResolverDefaultImpl.JdbcTypeInformation
 
getJdbcTypeName(int) - Static method in class org.mybatis.generator.internal.types.JdbcTypeNameTranslator
Translates from a java.sql.Types values to the proper iBATIS string representation of the type.
getKind() - Method in class org.mybatis.generator.eclipse.ui.buildpath.MyBatisContainer
 
getLength() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getLocation() - Method in class org.mybatis.generator.eclipse.ui.wizards.NewConfigFileWizardPage1
 
getLog(Class<?>) - Method in interface org.mybatis.generator.logging.AbstractLogFactory
 
getLog(Class<?>) - Static method in class org.mybatis.generator.logging.LogFactory
 
getLongInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.AbstractJavaClientGenerator
This method returns an instance of the XML generator associated with this client generator.
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.ibatis2.dao.DAOGenerator
 
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.AnnotatedClientGenerator
 
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.JavaMapperGenerator
 
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.MixedClientGenerator
 
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.SimpleAnnotatedClientGenerator
 
getMatchedXMLGenerator() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.SimpleJavaClientGenerator
 
getMergedSource() - Method in class org.mybatis.generator.eclipse.core.merge.JavaFileMerger
 
getMergedSource(GeneratedXmlFile, File) - Static method in class org.mybatis.generator.internal.XmlFileMergerJaxp
 
getMergedSource(InputSource, InputSource, String) - Static method in class org.mybatis.generator.internal.XmlFileMergerJaxp
 
getMessage() - Method in exception org.mybatis.generator.exception.InvalidConfigurationException
 
getMessage() - Method in exception org.mybatis.generator.exception.XMLParserException
 
getMethodAnnotations(MethodDeclaration) - Method in class org.mybatis.generator.eclipse.core.merge.ExistingJavaFileVisitor
 
getMethodClones(CommentGenerator, IntrospectedTable) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getMethodName() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderSelectByExampleWithBLOBsMethodGenerator
 
getMethodName() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderSelectByExampleWithoutBLOBsMethodGenerator
 
getMethodName() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderUpdateByExampleWithBLOBsMethodGenerator
 
getMethodName() - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.sqlprovider.ProviderUpdateByExampleWithoutBLOBsMethodGenerator
 
getMethods() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getMethods() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getMethods() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getMethodSignature(MethodDeclaration) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getModelType() - Method in enum org.mybatis.generator.config.ModelType
 
getModelType(String) - Static method in enum org.mybatis.generator.config.ModelType
 
getModelType() - Method in class org.mybatis.generator.config.TableConfiguration
 
getMyBatis3FallbackSqlMapNamespace() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getMyBatis3JavaMapperType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getMyBatis3Order() - Method in class org.mybatis.generator.config.GeneratedKey
 
getMyBatis3SqlMapNamespace() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getMyBatis3SqlProviderType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getMyBatis3UpdateByExampleWhereClauseId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getMyBatis3XmlMapperFileName() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getMyBatis3XmlMapperPackage() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getName() - Method in class org.mybatis.generator.api.dom.java.Field
 
getName() - Method in class org.mybatis.generator.api.dom.java.Method
 
getName() - Method in class org.mybatis.generator.api.dom.java.Parameter
 
getName() - Method in class org.mybatis.generator.api.dom.xml.Attribute
 
getName() - Method in class org.mybatis.generator.api.dom.xml.XmlElement
 
getNewArrayListInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getNewHashMapInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getNewIteratorInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getNewListInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getNewMapInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getNewNodes() - Method in class org.mybatis.generator.eclipse.core.merge.NewJavaFileVisitor
 
getNonBLOBColumnCount() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getNonBLOBColumns() - Method in class org.mybatis.generator.api.IntrospectedTable
Returns all columns except BLOBs (for use by the select by example without BLOBs method)
getNonPrimaryKeyColumns() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getObjectInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getPackageName() - Method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getParameterClause(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
 
getParameterClause(IntrospectedColumn, String) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
 
getParameterClause(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
 
getParameterClause(IntrospectedColumn, String) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
 
getParameterizedTypeName(ParameterizedType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getParameters() - Method in class org.mybatis.generator.api.dom.java.Method
 
getPassword() - Method in class org.mybatis.generator.config.JDBCConnectionConfiguration
 
getPath() - Method in class org.mybatis.generator.eclipse.ui.buildpath.MyBatisContainer
 
getPlugins() - Method in class org.mybatis.generator.config.Context
 
getPrimaryKeyColumns() - Method in class org.mybatis.generator.api.IntrospectedTable
Returns the columns in the primary key.
getPrimaryKeyType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getPrimitiveTypeName(PrimitiveType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getPrimitiveTypeWrapper() - Method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getProgressCallback() - Method in class org.mybatis.generator.codegen.AbstractGenerator
 
getProperties() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getProperties() - Method in class org.mybatis.generator.api.PluginAdapter
 
getProperties() - Method in class org.mybatis.generator.config.PropertyHolder
 
getProperty(String) - Method in class org.mybatis.generator.config.PropertyHolder
 
getPropertyName() - Method in enum org.mybatis.generator.plugins.CachePlugin.CacheProperty
 
getPublicId() - Method in class org.mybatis.generator.api.dom.xml.Document
 
getQualifiedTypeName(QualifiedType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getQueryForListMethod(String, String, String) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getQueryForObjectMethod(String, String, String) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getRecordWithBLOBsType() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getRemarks() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getRenamedColumnNameForResultMap(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
The renamed column name for a select statement.
getRenamedColumnNameForResultMap(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
The renamed column name for a select statement.
getReplaceString() - Method in class org.mybatis.generator.config.ColumnRenamingRule
 
getResource(String) - Static method in class org.mybatis.generator.internal.ObjectFactory
 
getResultAnnotation(Interface, IntrospectedColumn, boolean, boolean) - Method in class org.mybatis.generator.codegen.mybatis3.javamapper.elements.AbstractJavaMapperMethodGenerator
 
getResultMapWithBLOBsId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getReturnType() - Method in class org.mybatis.generator.api.dom.java.Method
 
getRootClass() - Method in class org.mybatis.generator.codegen.AbstractJavaGenerator
 
getRootElement() - Method in class org.mybatis.generator.api.dom.xml.Document
 
getRules() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getRuntimeSqlStatement() - Method in class org.mybatis.generator.config.GeneratedKey
 
getScale() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getSchema() - Method in class org.mybatis.generator.config.TableConfiguration
 
getSchema() - Method in class org.mybatis.generator.internal.db.ActualTableName
 
getSearchString() - Method in class org.mybatis.generator.config.ColumnRenamingRule
 
getSelectAllStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getSelectByExampleQueryId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getSelectByExampleQueryId() - Method in class org.mybatis.generator.config.TableConfiguration
 
getSelectByExampleStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getSelectByExampleWithBLOBsMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the select by example with BLOBs method.
getSelectByExampleWithBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
1.
getSelectByExampleWithBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
1.
getSelectByExampleWithBLOBsStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getSelectByExampleWithoutBLOBsMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the select by example method.
getSelectByExampleWithoutBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
1.
getSelectByExampleWithoutBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
1.
getSelectByPrimaryKeyMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the select by primary key method.
getSelectByPrimaryKeyMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getSelectByPrimaryKeyMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getSelectByPrimaryKeyQueryId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getSelectByPrimaryKeyQueryId() - Method in class org.mybatis.generator.config.TableConfiguration
 
getSelectByPrimaryKeyStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getSelection() - Method in class org.mybatis.generator.eclipse.ui.buildpath.MyBatisContainerPage
 
getSelectKey(IntrospectedColumn, GeneratedKey) - Method in class org.mybatis.generator.codegen.ibatis2.sqlmap.elements.AbstractXmlElementGenerator
This method should return an XmlElement for the select key used to automatically generate keys.
getSelectKey(IntrospectedColumn, GeneratedKey) - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.AbstractXmlElementGenerator
This method should return an XmlElement for the select key used to automatically generate keys.
getSelectListPhrase(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.ibatis2.Ibatis2FormattingUtilities
The phrase to use in a select list.
getSelectListPhrase(IntrospectedColumn) - Static method in class org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities
The phrase to use in a select list.
getSetterMethodName(String) - Static method in class org.mybatis.generator.internal.util.JavaBeansUtil
JavaBeans rules: eMail > seteMail() firstName > setFirstName() URL > setURL() XAxis > setXAxis() a > setA() B > invalid - this method assumes that this is not the case.
getShortInstance() - Static method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getShortName() - Method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getSimpleTypeName(SimpleType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getSqlMapElement() - Method in class org.mybatis.generator.codegen.ibatis2.sqlmap.SqlMapGenerator
 
getSqlMapElement() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.SimpleXMLMapperGenerator
 
getSqlMapElement() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.XMLMapperGenerator
 
getSqlMapGeneratorConfiguration() - Method in class org.mybatis.generator.config.Context
 
getStaticImports() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getStaticImports() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getStaticImports() - Method in class org.mybatis.generator.api.dom.java.TopLevelClass
 
getStaticImports() - Method in class org.mybatis.generator.api.dom.java.TopLevelEnumeration
 
getString(String) - Static method in class org.mybatis.generator.internal.util.messages.Messages
 
getString(String, String) - Static method in class org.mybatis.generator.internal.util.messages.Messages
 
getString(String, String, String) - Static method in class org.mybatis.generator.internal.util.messages.Messages
 
getString(String, String, String, String) - Static method in class org.mybatis.generator.internal.util.messages.Messages
 
getStringInstance() - Static method in class org.mybatis.generator.api.dom.java.FullyQualifiedJavaType
 
getSubPackage(boolean) - Method in class org.mybatis.generator.api.FullyQualifiedTable
Calculates a Java package fragment based on the table catalog and schema.
getSuperClass() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getSuperClass() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getSuperClass() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getSuperClass() - Method in class org.mybatis.generator.api.dom.java.TopLevelEnumeration
 
getSuperClass() - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getSuperclass() - Method in class org.mybatis.generator.eclipse.core.merge.NewJavaFileVisitor
 
getSuperInterfaceTypes() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getSuperInterfaceTypes() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getSuperInterfaceTypes() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getSuperInterfaceTypes() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getSuperInterfaceTypes() - Method in class org.mybatis.generator.eclipse.core.merge.NewJavaFileVisitor
 
getSystemId() - Method in class org.mybatis.generator.api.dom.xml.Document
 
getTableAlias() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getTableConfiguration() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getTableConfigurationProperty(String) - Method in class org.mybatis.generator.api.IntrospectedTable
 
getTableConfigurations() - Method in class org.mybatis.generator.config.Context
 
getTableName() - Method in class org.mybatis.generator.config.TableConfiguration
 
getTableName() - Method in class org.mybatis.generator.internal.db.ActualTableName
 
getTargetPackage() - Method in class org.mybatis.generator.api.GeneratedFile
Get the target package for the file.
getTargetPackage() - Method in class org.mybatis.generator.api.GeneratedJavaFile
 
getTargetPackage() - Method in class org.mybatis.generator.api.GeneratedXmlFile
 
getTargetPackage() - Method in class org.mybatis.generator.config.JavaClientGeneratorConfiguration
 
getTargetPackage() - Method in class org.mybatis.generator.config.JavaModelGeneratorConfiguration
 
getTargetPackage() - Method in class org.mybatis.generator.config.SqlMapGeneratorConfiguration
 
getTargetProject() - Method in class org.mybatis.generator.api.GeneratedFile
Gets the target project.
getTargetProject() - Method in class org.mybatis.generator.config.JavaClientGeneratorConfiguration
 
getTargetProject() - Method in class org.mybatis.generator.config.JavaModelGeneratorConfiguration
 
getTargetProject() - Method in class org.mybatis.generator.config.SqlMapGeneratorConfiguration
 
getTargetRuntime() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getTargetRuntime() - Method in class org.mybatis.generator.config.Context
 
getTopLevelClassShell() - Method in class org.mybatis.generator.codegen.ibatis2.dao.DAOGenerator
 
getToPrimitiveMethod() - Method in class org.mybatis.generator.api.dom.java.PrimitiveTypeWrapper
 
getType() - Method in interface org.mybatis.generator.api.dom.java.CompilationUnit
 
getType() - Method in class org.mybatis.generator.api.dom.java.Field
 
getType() - Method in class org.mybatis.generator.api.dom.java.InnerClass
 
getType() - Method in class org.mybatis.generator.api.dom.java.InnerEnum
 
getType() - Method in class org.mybatis.generator.api.dom.java.Interface
 
getType() - Method in class org.mybatis.generator.api.dom.java.Parameter
 
getType() - Method in class org.mybatis.generator.config.GeneratedKey
 
getTypeDeclaration() - Method in class org.mybatis.generator.eclipse.core.merge.ExistingJavaFileVisitor
 
getTypeHandler() - Method in class org.mybatis.generator.api.IntrospectedColumn
 
getTypeHandler() - Method in class org.mybatis.generator.config.ColumnOverride
 
getTypeName(Type) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
This method is used to generate a unique string that fully expresses the type name.
getUnionTypeName(UnionType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getUpdateByExampleIncludeElement() - Method in class org.mybatis.generator.codegen.mybatis3.xmlmapper.elements.AbstractXmlElementGenerator
 
getUpdateByExampleSelectiveMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the update by example selective method.
getUpdateByExampleSelectiveMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getUpdateByExampleSelectiveMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getUpdateByExampleSelectiveStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getUpdateByExampleStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getUpdateByExampleWithBLOBsMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the update by example with BLOBs method.
getUpdateByExampleWithBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getUpdateByExampleWithBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getUpdateByExampleWithBLOBsStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getUpdateByExampleWithoutBLOBsMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the update by example without BLOBs method.
getUpdateByExampleWithoutBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getUpdateByExampleWithoutBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getUpdateByPrimaryKeySelectiveMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the update by primary key selective method.
getUpdateByPrimaryKeySelectiveMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
 
getUpdateByPrimaryKeySelectiveMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
 
getUpdateByPrimaryKeySelectiveStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getUpdateByPrimaryKeyStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getUpdateByPrimaryKeyWithBLOBsMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the update by primary key with BLOBs method.
getUpdateByPrimaryKeyWithBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
1.
getUpdateByPrimaryKeyWithBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
1.
getUpdateByPrimaryKeyWithBLOBsStatementId() - Method in class org.mybatis.generator.api.IntrospectedTable
 
getUpdateByPrimaryKeyWithoutBLOBsMethodName(IntrospectedTable) - Method in interface org.mybatis.generator.api.DAOMethodNameCalculator
Calculates and returns a name for the update by primary key without BLOBs method.
getUpdateByPrimaryKeyWithoutBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.DefaultDAOMethodNameCalculator
1.
getUpdateByPrimaryKeyWithoutBLOBsMethodName(IntrospectedTable) - Method in class org.mybatis.generator.internal.ExtendedDAOMethodNameCalculator
1.
getUpdateMethod(String, String, String) - Method in class org.mybatis.generator.codegen.ibatis2.dao.templates.AbstractDAOTemplate
 
getUserId() - Method in class org.mybatis.generator.config.JDBCConnectionConfiguration
 
getValidPropertyName(String) - Static method in class org.mybatis.generator.internal.util.JavaBeansUtil
This method ensures that the specified input string is a valid Java property name.
getValue() - Method in enum org.mybatis.generator.api.dom.java.JavaVisibility
 
getValue() - Method in class org.mybatis.generator.api.dom.xml.Attribute
 
getVersion(Document) - Method in class org.mybatis.generator.internal.DomWriter
Extracts the XML version from the Document.
getVisibility() - Method in class org.mybatis.generator.api.dom.java.JavaElement
 
getWarnings() - Method in class org.mybatis.generator.codegen.AbstractGenerator
 
getWildcardTypeName(WildcardType) - Static method in class org.mybatis.generator.eclipse.core.merge.EclipseDomUtils
 
getXmlFormatter() - Method in class org.mybatis.generator.config.Context
 

A B C D E F G H I J L M N O P Q R S T U V W X