public static enum TerminologyNormalizer.Type extends Enum<TerminologyNormalizer.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
LIST |
NULL |
NUMBER |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static TerminologyNormalizer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerminologyNormalizer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminologyNormalizer.Type BOOLEAN
public static final TerminologyNormalizer.Type NUMBER
public static final TerminologyNormalizer.Type NULL
public static final TerminologyNormalizer.Type LIST
public static final TerminologyNormalizer.Type OBJECT
public static final TerminologyNormalizer.Type STRING
public static TerminologyNormalizer.Type[] values()
for (TerminologyNormalizer.Type c : TerminologyNormalizer.Type.values()) System.out.println(c);
public static TerminologyNormalizer.Type 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. All rights reserved.