public static enum JLanguageTool.ParagraphHandling extends Enum<JLanguageTool.ParagraphHandling>
Enum Constant and Description |
---|
NORMAL
Handle normally - all kinds of rules run.
|
ONLYNONPARA
Run only sentence-level rules.
|
ONLYPARA
Run only paragraph-level rules.
|
Modifier and Type | Method and Description |
---|---|
static JLanguageTool.ParagraphHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JLanguageTool.ParagraphHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JLanguageTool.ParagraphHandling NORMAL
public static final JLanguageTool.ParagraphHandling ONLYPARA
public static final JLanguageTool.ParagraphHandling ONLYNONPARA
public static JLanguageTool.ParagraphHandling[] values()
for (JLanguageTool.ParagraphHandling c : JLanguageTool.ParagraphHandling.values()) System.out.println(c);
public static JLanguageTool.ParagraphHandling 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 null