public enum AnalyzerExecutionStrategy extends Enum<AnalyzerExecutionStrategy>
| Enum Constant and Description |
|---|
EMBEDDED
Analyzers will be applied locally, when talking to an embedded Lucene index.
|
REMOTE
Analyzers will be applied remotely, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static AnalyzerExecutionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalyzerExecutionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalyzerExecutionStrategy EMBEDDED
public static final AnalyzerExecutionStrategy REMOTE
public static AnalyzerExecutionStrategy[] values()
for (AnalyzerExecutionStrategy c : AnalyzerExecutionStrategy.values()) System.out.println(c);
public static AnalyzerExecutionStrategy 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 © 2006–2016 Hibernate. All rights reserved.