public static enum IndexResource.SupportedRelations extends Enum<IndexResource.SupportedRelations>
| Enum Constant and Description |
|---|
adj |
eq |
fuzzy |
ge |
gt |
le |
lt |
proximity |
within |
| Modifier and Type | Method and Description |
|---|---|
static IndexResource.SupportedRelations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexResource.SupportedRelations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexResource.SupportedRelations adj
public static final IndexResource.SupportedRelations fuzzy
public static final IndexResource.SupportedRelations proximity
public static final IndexResource.SupportedRelations within
public static final IndexResource.SupportedRelations lt
public static final IndexResource.SupportedRelations le
public static final IndexResource.SupportedRelations gt
public static final IndexResource.SupportedRelations ge
public static final IndexResource.SupportedRelations eq
public static IndexResource.SupportedRelations[] values()
for (IndexResource.SupportedRelations c : IndexResource.SupportedRelations.values()) System.out.println(c);
public static IndexResource.SupportedRelations 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 © 2016. All Rights Reserved.