public static enum CorpusStorageManager.QueryLanguage extends Enum<CorpusStorageManager.QueryLanguage>
| Enum Constant and Description |
|---|
AQL
Default ANNIS query language implementation/specification
|
AQLQuirksV3
Emulates the (sometimes problematic) behavior of AQL used in ANNIS 3
|
| Modifier and Type | Field and Description |
|---|---|
protected int |
capiVal |
| Modifier and Type | Method and Description |
|---|---|
static CorpusStorageManager.QueryLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CorpusStorageManager.QueryLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CorpusStorageManager.QueryLanguage AQL
public static final CorpusStorageManager.QueryLanguage AQLQuirksV3
public static CorpusStorageManager.QueryLanguage[] values()
for (CorpusStorageManager.QueryLanguage c : CorpusStorageManager.QueryLanguage.values()) System.out.println(c);
public static CorpusStorageManager.QueryLanguage 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 © 2019 Thomas Krause. All rights reserved.