public static enum AttributeIndexSchema.Type extends Enum<AttributeIndexSchema.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
GEO_POINT |
KEYWORD
字符串类型
|
LONG |
| Modifier and Type | Method and Description |
|---|---|
static AttributeIndexSchema.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeIndexSchema.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeIndexSchema.Type LONG
public static final AttributeIndexSchema.Type DOUBLE
public static final AttributeIndexSchema.Type BOOLEAN
public static final AttributeIndexSchema.Type KEYWORD
public static final AttributeIndexSchema.Type GEO_POINT
public static AttributeIndexSchema.Type[] values()
for (AttributeIndexSchema.Type c : AttributeIndexSchema.Type.values()) System.out.println(c);
public static AttributeIndexSchema.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All Rights Reserved.