Uses of Class
cc.carm.lib.easysql.api.enums.NumberType
-
Packages that use NumberType Package Description cc.carm.lib.easysql.api.builder cc.carm.lib.easysql.api.enums cc.carm.lib.easysql.builder.impl -
-
Uses of NumberType in cc.carm.lib.easysql.api.builder
Methods in cc.carm.lib.easysql.api.builder with parameters of type NumberType Modifier and Type Method Description default SQLAction<java.lang.Integer>TableAlterBuilder. addAutoIncrementColumn(@NotNull java.lang.String columnName, @NotNull NumberType numberType)为该表添加一个自增列
自增列强制要求为数字类型,非空,且为UNIQUE。default SQLAction<java.lang.Integer>TableAlterBuilder. addAutoIncrementColumn(@NotNull java.lang.String columnName, @Nullable NumberType numberType, boolean primary, boolean unsigned)为该表添加一个自增列TableCreateBuilderTableCreateBuilder. addAutoIncrementColumn(@NotNull java.lang.String columnName, @Nullable NumberType numberType, boolean asPrimaryKey, boolean unsigned)为该表添加一个自增列 -
Uses of NumberType in cc.carm.lib.easysql.api.enums
Methods in cc.carm.lib.easysql.api.enums that return NumberType Modifier and Type Method Description static NumberTypeNumberType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NumberType[]NumberType. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of NumberType in cc.carm.lib.easysql.builder.impl
Methods in cc.carm.lib.easysql.builder.impl with parameters of type NumberType Modifier and Type Method Description TableCreateBuilderTableCreateBuilderImpl. addAutoIncrementColumn(@NotNull java.lang.String columnName, @Nullable NumberType numberType, boolean asPrimaryKey, boolean unsigned)
-