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