public static enum Category.Location extends Enum<Category.Location>
| Enum Constant and Description |
|---|
EXTERNAL
The rules in this category are not part of the main distribution of LanguageTool.
|
INTERNAL
The rules in this category are part of the main distribution of
LanguageTool and are thus available on community.languagetool.org.
|
| Modifier and Type | Method and Description |
|---|---|
static Category.Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category.Location INTERNAL
public static final Category.Location EXTERNAL
public static Category.Location[] values()
for (Category.Location c : Category.Location.values()) System.out.println(c);
public static Category.Location 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