Serializable, Comparable<MultiQueriesStrategy>public enum MultiQueriesStrategy extends Enum<MultiQueriesStrategy>
| Enum Constant | Description |
|---|---|
NONE |
|
STOP_IF_ENOUGH_MATCHES |
| Modifier and Type | Method | Description |
|---|---|---|
String |
getName() |
|
static MultiQueriesStrategy |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static MultiQueriesStrategy[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiQueriesStrategy NONE
public static final MultiQueriesStrategy STOP_IF_ENOUGH_MATCHES
public static MultiQueriesStrategy[] values()
for (MultiQueriesStrategy c : MultiQueriesStrategy.values()) System.out.println(c);
public static MultiQueriesStrategy 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 nullpublic String getName()
Copyright © 2018. All rights reserved.