Uses of Class
cc.carm.lib.easysql.api.enums.IndexType
-
Packages that use IndexType Package Description cc.carm.lib.easysql.api.builder cc.carm.lib.easysql.api.enums cc.carm.lib.easysql.builder.impl -
-
Uses of IndexType in cc.carm.lib.easysql.api.builder
Methods in cc.carm.lib.easysql.api.builder with parameters of type IndexType Modifier and Type Method Description SQLAction<java.lang.Integer>TableAlterBuilder. addIndex(@NotNull IndexType indexType, @NotNull java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)TableCreateBuilderTableCreateBuilder. setIndex(@NotNull IndexType type, @Nullable java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)设定表中的某列为索引或键。default TableCreateBuilderTableCreateBuilder. setIndex(@NotNull java.lang.String columnName, @NotNull IndexType type)设定表中的某列为索引或键。 -
Uses of IndexType in cc.carm.lib.easysql.api.enums
Methods in cc.carm.lib.easysql.api.enums that return IndexType Modifier and Type Method Description static IndexTypeIndexType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IndexType[]IndexType. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of IndexType in cc.carm.lib.easysql.builder.impl
Methods in cc.carm.lib.easysql.builder.impl with parameters of type IndexType Modifier and Type Method Description SQLAction<java.lang.Integer>TableAlterBuilderImpl. addIndex(@NotNull IndexType indexType, @NotNull java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)protected static java.lang.StringTableCreateBuilderImpl. buildIndexSettings(@NotNull IndexType indexType, @Nullable java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)TableCreateBuilderTableCreateBuilderImpl. setIndex(@NotNull IndexType type, @Nullable java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)
-