本文整理汇总了Java中org.mybatis.generator.internal.rules.Rules.generateSelectByExampleWithBLOBs方法的典型用法代码示例。如果您正苦于以下问题:Java Rules.generateSelectByExampleWithBLOBs方法的具体用法?Java Rules.generateSelectByExampleWithBLOBs怎么用?Java Rules.generateSelectByExampleWithBLOBs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.mybatis.generator.internal.rules.Rules
的用法示例。
在下文中一共展示了Rules.generateSelectByExampleWithBLOBs方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSelectByExampleWithoutBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
* 1. if this will be the only selectByExample, then the result should be
* selectByExample. 2. Else the method name should be
* selectByExampleWithoutBLOBs
*/
public String getSelectByExampleWithoutBLOBsMethodName(
IntrospectedTable introspectedTable) {
StringBuilder sb = new StringBuilder();
sb.append("select"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable()
.getDomainObjectName());
sb.append("ByExample"); //$NON-NLS-1$
Rules rules = introspectedTable.getRules();
if (rules.generateSelectByExampleWithBLOBs()) {
sb.append("WithoutBLOBs"); //$NON-NLS-1$
}
return sb.toString();
}
示例2: getSelectByExampleWithoutBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
* 1. if this will be the only selectByExample, then the result should be
* selectByExample. 2. Else the method name should be
* selectByExampleWithoutBLOBs
*/
@Override
public String getSelectByExampleWithoutBLOBsMethodName(
IntrospectedTable introspectedTable) {
StringBuilder sb = new StringBuilder();
sb.append("select"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable()
.getDomainObjectName());
sb.append("ByExample"); //$NON-NLS-1$
Rules rules = introspectedTable.getRules();
if (rules.generateSelectByExampleWithBLOBs()) {
sb.append("WithoutBLOBs"); //$NON-NLS-1$
}
return sb.toString();
}
示例3: getSelectByExampleWithoutBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
* 1. if this will be the only selectByExample, then the result should be
* selectByExample. 2. Else the method name should be
* selectByExampleWithoutBLOBs
*/
public String getSelectByExampleWithoutBLOBsMethodName(
IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateSelectByExampleWithBLOBs()) {
return "selectByExample"; //$NON-NLS-1$
} else {
return "selectByExampleWithoutBLOBs"; //$NON-NLS-1$
}
}
示例4: getSelectByExampleWithoutBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
* 1. if this will be the only selectByExample, then the result should be
* selectByExample. 2. Else the method name should be
* selectByExampleWithoutBLOBs
*/
@Override
public String getSelectByExampleWithoutBLOBsMethodName(
IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateSelectByExampleWithBLOBs()) {
return "selectByExample"; //$NON-NLS-1$
} else {
return "selectByExampleWithoutBLOBs"; //$NON-NLS-1$
}
}
示例5: getSelectByExampleWithoutBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
* 1. if this will be the only selectByExample, then the result should be
* selectByExample. 2. Else the method name should be
* selectByExampleWithoutBLOBs
*/
public String getSelectByExampleWithoutBLOBsMethodName(IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateSelectByExampleWithBLOBs()) {
return "selectByExample"; //$NON-NLS-1$
} else {
return "selectByExampleWithoutBLOBs"; //$NON-NLS-1$
}
}
示例6: getSelectByExampleWithoutBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
* 1. if this will be the only selectByExample, then the result should be
* selectByExample. 2. Else the method name should be
* selectByExampleWithoutBLOBs
*/
public String getSelectByExampleWithoutBLOBsMethodName(IntrospectedTable introspectedTable) {
StringBuilder sb = new StringBuilder();
sb.append("select"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());
sb.append("ByExample"); //$NON-NLS-1$
Rules rules = introspectedTable.getRules();
if (rules.generateSelectByExampleWithBLOBs()) {
sb.append("WithoutBLOBs"); //$NON-NLS-1$
}
return sb.toString();
}