public static enum ViterbiNode.Type extends java.lang.Enum<ViterbiNode.Type>
Modifier and Type | Method and Description |
---|---|
static ViterbiNode.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViterbiNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViterbiNode.Type KNOWN
public static final ViterbiNode.Type UNKNOWN
public static final ViterbiNode.Type USER
public static final ViterbiNode.Type INSERTED
public static ViterbiNode.Type[] values()
for (ViterbiNode.Type c : ViterbiNode.Type.values()) System.out.println(c);
public static ViterbiNode.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null