public enum VocabularyStore extends Enum<VocabularyStore>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
void |
addVocabulary(String vocabulary,
String code) |
Collection<String> |
getAllVocabularies() |
String |
getCtakesClass(String vocabulary) |
static VocabularyStore |
getInstance() |
String |
getJdbcClass(String vocabulary) |
Class<?> |
getVocabularyClass(String vocabulary) |
static VocabularyStore |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VocabularyStore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VocabularyStore INSTANCE
public static VocabularyStore[] values()
for (VocabularyStore c : VocabularyStore.values()) System.out.println(c);
public static VocabularyStore 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 static VocabularyStore getInstance()
public Collection<String> getAllVocabularies()
Copyright © 2012-2017 The Apache Software Foundation. All Rights Reserved.