当前位置: 首页>>代码示例>>Java>>正文


Java Rules.generateRecordWithBLOBsClass方法代码示例

本文整理汇总了Java中org.mybatis.generator.internal.rules.Rules.generateRecordWithBLOBsClass方法的典型用法代码示例。如果您正苦于以下问题:Java Rules.generateRecordWithBLOBsClass方法的具体用法?Java Rules.generateRecordWithBLOBsClass怎么用?Java Rules.generateRecordWithBLOBsClass使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.mybatis.generator.internal.rules.Rules的用法示例。


在下文中一共展示了Rules.generateRecordWithBLOBsClass方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getUpdateByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();
    sb.append("update"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());

    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByExampleWithoutBLOBs()) {
        sb.append("ByExample"); //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        sb.append("ByExample"); //$NON-NLS-1$
    } else {
        sb.append("ByExampleWithBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:DomKing,项目名称:server-utility,代码行数:20,代码来源:ExtendedDAOMethodNameCalculator.java

示例2: getUpdateByExampleWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithoutBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();

    sb.append("update"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());

    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByExampleWithBLOBs()) {
        sb.append("ByExample"); //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        sb.append("ByExample"); //$NON-NLS-1$
    } else {
        sb.append("ByExampleWithoutBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:xiachengwei5,项目名称:org.mybatis.generator.core-1.3.5,代码行数:21,代码来源:ExtendedDAOMethodNameCalculator.java

示例3: getUpdateByPrimaryKeyWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithBLOBs
 */
public String getUpdateByPrimaryKeyWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();
    sb.append("update"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());

    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByPrimaryKeyWithoutBLOBs()) {
        sb.append("ByPrimaryKey"); //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        sb.append("ByPrimaryKey"); //$NON-NLS-1$
    } else {
        sb.append("ByPrimaryKeyWithBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:27,代码来源:ExtendedDAOMethodNameCalculator.java

示例4: getUpdateByPrimaryKeyWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithoutBLOBs
 */
public String getUpdateByPrimaryKeyWithoutBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();

    sb.append("update"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());

    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByPrimaryKeyWithBLOBs()) {
        sb.append("ByPrimaryKey"); //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        sb.append("ByPrimaryKey"); //$NON-NLS-1$
    } else {
        sb.append("ByPrimaryKeyWithoutBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:DomKing,项目名称:springbootWeb,代码行数:28,代码来源:ExtendedDAOMethodNameCalculator.java

示例5: getUpdateByPrimaryKeyWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithBLOBs
 */
@Override
public String getUpdateByPrimaryKeyWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();
    sb.append("update"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());

    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByPrimaryKeyWithoutBLOBs()) {
        sb.append("ByPrimaryKey"); //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        sb.append("ByPrimaryKey"); //$NON-NLS-1$
    } else {
        sb.append("ByPrimaryKeyWithBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:nextyu,项目名称:summer-mybatis-generator,代码行数:28,代码来源:ExtendedDAOMethodNameCalculator.java

示例6: getUpdateByPrimaryKeyWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithoutBLOBs
 */
public String getUpdateByPrimaryKeyWithoutBLOBsMethodName(IntrospectedTable introspectedTable) {
	StringBuilder sb = new StringBuilder();

	sb.append("update"); //$NON-NLS-1$
	sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());

	Rules rules = introspectedTable.getRules();

	if (!rules.generateUpdateByPrimaryKeyWithBLOBs()) {
		sb.append("ByPrimaryKey"); //$NON-NLS-1$
	} else if (rules.generateRecordWithBLOBsClass()) {
		sb.append("ByPrimaryKey"); //$NON-NLS-1$
	} else {
		sb.append("ByPrimaryKeyWithoutBLOBs"); //$NON-NLS-1$
	}

	return sb.toString();
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:26,代码来源:ExtendedDAOMethodNameCalculator.java

示例7: getUpdateByPrimaryKeyWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithBLOBs
 */
public String getUpdateByPrimaryKeyWithBLOBsMethodName(IntrospectedTable introspectedTable) {
	StringBuilder sb = new StringBuilder();
	sb.append("update"); //$NON-NLS-1$
	sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());

	Rules rules = introspectedTable.getRules();

	if (!rules.generateUpdateByPrimaryKeyWithoutBLOBs()) {
		sb.append("ByPrimaryKey"); //$NON-NLS-1$
	} else if (rules.generateRecordWithBLOBsClass()) {
		sb.append("ByPrimaryKey"); //$NON-NLS-1$
	} else {
		sb.append("ByPrimaryKeyWithBLOBs"); //$NON-NLS-1$
	}

	return sb.toString();
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:25,代码来源:ExtendedDAOMethodNameCalculator.java

示例8: getUpdateByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(IntrospectedTable introspectedTable) {
	StringBuilder sb = new StringBuilder();
	sb.append("update"); //$NON-NLS-1$
	sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());

	Rules rules = introspectedTable.getRules();

	if (!rules.generateUpdateByExampleWithoutBLOBs()) {
		sb.append("ByExample"); //$NON-NLS-1$
	} else if (rules.generateRecordWithBLOBsClass()) {
		sb.append("ByExample"); //$NON-NLS-1$
	} else {
		sb.append("ByExampleWithBLOBs"); //$NON-NLS-1$
	}

	return sb.toString();
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:18,代码来源:ExtendedDAOMethodNameCalculator.java

示例9: getUpdateByExampleWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithoutBLOBsMethodName(IntrospectedTable introspectedTable) {
	StringBuilder sb = new StringBuilder();

	sb.append("update"); //$NON-NLS-1$
	sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());

	Rules rules = introspectedTable.getRules();

	if (!rules.generateUpdateByExampleWithBLOBs()) {
		sb.append("ByExample"); //$NON-NLS-1$
	} else if (rules.generateRecordWithBLOBsClass()) {
		sb.append("ByExample"); //$NON-NLS-1$
	} else {
		sb.append("ByExampleWithoutBLOBs"); //$NON-NLS-1$
	}

	return sb.toString();
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:19,代码来源:ExtendedDAOMethodNameCalculator.java

示例10: getUpdateByPrimaryKeyWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithoutBLOBs
 */
public String getUpdateByPrimaryKeyWithoutBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByPrimaryKeyWithBLOBs()) {
        return "updateByPrimaryKey"; //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        return "updateByPrimaryKey"; //$NON-NLS-1$
    } else {
        return "updateByPrimaryKeyWithoutBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:20,代码来源:DefaultDAOMethodNameCalculator.java

示例11: getUpdateByExampleWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithoutBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByExampleWithBLOBs()) {
        return "updateByExample"; //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        return "updateByExample"; //$NON-NLS-1$
    } else {
        return "updateByExampleWithoutBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:13,代码来源:DefaultDAOMethodNameCalculator.java

示例12: getUpdateByPrimaryKeyWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithBLOBs
 */
public String getUpdateByPrimaryKeyWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByPrimaryKeyWithoutBLOBs()) {
        return "updateByPrimaryKey"; //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        return "updateByPrimaryKey"; //$NON-NLS-1$
    } else {
        return "updateByPrimaryKeyWithBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:DomKing,项目名称:server-utility,代码行数:20,代码来源:DefaultDAOMethodNameCalculator.java

示例13: getUpdateByPrimaryKeyWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only updateByPrimaryKey, then the result should be
 * updateByPrimaryKey. 2. If the other method is enabled, but there are
 * seperate base and blob classes, then the method name should be
 * updateByPrimaryKey 3. Else the method name should be
 * updateByPrimaryKeyWithoutBLOBs
 */
@Override
public String getUpdateByPrimaryKeyWithoutBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByPrimaryKeyWithBLOBs()) {
        return "updateByPrimaryKey"; //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        return "updateByPrimaryKey"; //$NON-NLS-1$
    } else {
        return "updateByPrimaryKeyWithoutBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:nextyu,项目名称:summer-mybatis-generator,代码行数:21,代码来源:DefaultDAOMethodNameCalculator.java

示例14: getUpdateByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByExampleWithoutBLOBs()) {
        return "updateByExample"; //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        return "updateByExample"; //$NON-NLS-1$
    } else {
        return "updateByExampleWithBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:xiachengwei5,项目名称:org.mybatis.generator.core-1.3.5,代码行数:13,代码来源:DefaultDAOMethodNameCalculator.java

示例15: getUpdateByExampleWithoutBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
@Override
public String getUpdateByExampleWithoutBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateUpdateByExampleWithBLOBs()) {
        return "updateByExample"; //$NON-NLS-1$
    } else if (rules.generateRecordWithBLOBsClass()) {
        return "updateByExample"; //$NON-NLS-1$
    } else {
        return "updateByExampleWithoutBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:nextyu,项目名称:summer-mybatis-generator,代码行数:14,代码来源:DefaultDAOMethodNameCalculator.java


注:本文中的org.mybatis.generator.internal.rules.Rules.generateRecordWithBLOBsClass方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。