public static enum PluralRules.KeywordStatus extends Enum<PluralRules.KeywordStatus>
Enum Constant and Description |
---|
BOUNDED
The keyword is valid, used, not unique, and has a finite set of values.
|
INVALID
The keyword is not valid for the rules.
|
SUPPRESSED
The keyword is valid, but unused (it is covered by the explicit values, OR has no values for the given
PluralRules.SampleType ). |
UNBOUNDED
The keyword is valid but not bounded; there indefinitely many matching values.
|
UNIQUE
The keyword is valid, used, and has a single possible value (before considering explicit values).
|
Modifier and Type | Method and Description |
---|---|
static PluralRules.KeywordStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluralRules.KeywordStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluralRules.KeywordStatus INVALID
public static final PluralRules.KeywordStatus SUPPRESSED
PluralRules.SampleType
).public static final PluralRules.KeywordStatus UNIQUE
public static final PluralRules.KeywordStatus BOUNDED
public static final PluralRules.KeywordStatus UNBOUNDED
public static PluralRules.KeywordStatus[] values()
for (PluralRules.KeywordStatus c : PluralRules.KeywordStatus.values()) System.out.println(c);
public static PluralRules.KeywordStatus 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 © 2016 Unicode, Inc. and others.