public enum SentenceStartType extends Enum<SentenceStartType>
| Enum Constant and Description |
|---|
NO_START
This is not a start of a new sentence.
|
NONE
End of text reached or error.
|
POSSIBLE
This may be a start of a new sentence.
|
PROBABLE
This is a probable start of a new sentence.
|
| Modifier and Type | Method and Description |
|---|---|
static SentenceStartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SentenceStartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SentenceStartType NONE
public static final SentenceStartType NO_START
public static final SentenceStartType PROBABLE
public static final SentenceStartType POSSIBLE
public static SentenceStartType[] values()
for (SentenceStartType c : SentenceStartType.values()) System.out.println(c);
public static SentenceStartType 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 © 2013 Voikko developers. All Rights Reserved.