Enum LocalizedStringWarning.Type
- All Implemented Interfaces:
Serializable, Comparable<LocalizedStringWarning.Type>, Constable
- Enclosing class:
LocalizedStringWarning
The kind of problem a
LocalizedStringWarning represents.- Since:
- 3.0.0
- Author:
- Mark Allen
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA cardinality-driven placeholder omits one or more cardinal forms that its locale requires per CLDR.An ordinality-driven placeholder omits one or more ordinal forms that its locale requires per CLDR.A JSON resource in a classpath localized strings package is not named with a valid IETF BCP 47 locale tag. -
Method Summary
Modifier and TypeMethodDescriptionstatic LocalizedStringWarning.TypeReturns the enum constant of this type with the specified name.static LocalizedStringWarning.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INCOMPLETE_CARDINALITY_TRANSLATIONS
A cardinality-driven placeholder omits one or more cardinal forms that its locale requires per CLDR. -
INCOMPLETE_ORDINALITY_TRANSLATIONS
An ordinality-driven placeholder omits one or more ordinal forms that its locale requires per CLDR. -
INVALID_CLASSPATH_LOCALE_FILENAME
A JSON resource in a classpath localized strings package is not named with a valid IETF BCP 47 locale tag.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-