All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.qdbp.jdbc.model.ValidStrategy Maven / Gradle / Ivy

package com.gitee.qdbp.jdbc.model;

/** 校验处理策略: 不处理|警告|抛出异常|转换 **/
public enum ValidStrategy {
    /** 根据默认配置决定 **/
    AUTO,
    /** 不处理 **/
    NONE,
    /** 警告 **/
    WARN,
    /** 抛出异常 **/
    THROW,
    /** 转换 (字符串超长时截断/数字超过精度时保存为最大精度的999...) **/
    TRANSFORM
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy