public enum PgSqlIndexType extends Enum<PgSqlIndexType>
| 枚举常量和说明 |
|---|
BRIN
BRIN(块范围索引)索引
|
BTREE
普通(B-树)索引
|
GIN
GIN(倒排索引)索引
|
GIST
GiST(广义搜索树)索引
|
HASH
Hash(哈希)索引
|
SPGiST
SP-GiST(空间路径广义搜索树)索引
|
public static final PgSqlIndexType BTREE
public static final PgSqlIndexType HASH
public static final PgSqlIndexType GIST
public static final PgSqlIndexType SPGiST
public static final PgSqlIndexType GIN
public static final PgSqlIndexType BRIN
public static PgSqlIndexType[] values()
for (PgSqlIndexType c : PgSqlIndexType.values()) System.out.println(c);
public static PgSqlIndexType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.