public static enum QueryContext.IndexMatchHint extends Enum<QueryContext.IndexMatchHint>
Enum Constant and Description |
---|
EXACT_NAME
Match pattern is interpreted as a full index name and may specify a
composite index name.
|
NONE
Match pattern is interpreted as an attribute name.
|
PREFER_ORDERED
Match pattern interpreted is as an attribute name.
|
PREFER_UNORDERED
Match pattern is interpreted as an attribute name.
|
Modifier and Type | Method and Description |
---|---|
static QueryContext.IndexMatchHint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryContext.IndexMatchHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryContext.IndexMatchHint NONE
public static final QueryContext.IndexMatchHint PREFER_UNORDERED
public static final QueryContext.IndexMatchHint PREFER_ORDERED
public static final QueryContext.IndexMatchHint EXACT_NAME
public static QueryContext.IndexMatchHint[] values()
for (QueryContext.IndexMatchHint c : QueryContext.IndexMatchHint.values()) System.out.println(c);
public static QueryContext.IndexMatchHint 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 © 2021 Hazelcast, Inc.. All Rights Reserved.