Enum TranslationResultStatus
- All Implemented Interfaces:
Serializable, Comparable<TranslationResultStatus>, Constable
Describes how a
TranslationResult produced its returned string.- 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 ConstantDescriptionThe failure handler requested the interpolated lookup key.The failure handler supplied a replacement string.A localized string resolved successfully. -
Method Summary
Modifier and TypeMethodDescriptionstatic TranslationResultStatusReturns the enum constant of this type with the specified name.static TranslationResultStatus[]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
-
TRANSLATED
A localized string resolved successfully. -
RETURNED_KEY
The failure handler requested the interpolated lookup key. -
RETURNED_STRING
The failure handler supplied a replacement string.
-
-
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
-