Enum I18nFormatterTreeUtil.FormatType
- java.lang.Object
-
- java.lang.Enum<I18nFormatterTreeUtil.FormatType>
-
- org.checkerframework.checker.i18nformatter.I18nFormatterTreeUtil.FormatType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<I18nFormatterTreeUtil.FormatType>
- Enclosing class:
- I18nFormatterTreeUtil
public static enum I18nFormatterTreeUtil.FormatType extends java.lang.Enum<I18nFormatterTreeUtil.FormatType>
Describe the format annotation type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description I18NFORMAT
I18NFORMATFOR
I18NINVALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static I18nFormatterTreeUtil.FormatType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static I18nFormatterTreeUtil.FormatType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
I18NINVALID
public static final I18nFormatterTreeUtil.FormatType I18NINVALID
-
I18NFORMAT
public static final I18nFormatterTreeUtil.FormatType I18NFORMAT
-
I18NFORMATFOR
public static final I18nFormatterTreeUtil.FormatType I18NFORMATFOR
-
-
Method Detail
-
values
public static I18nFormatterTreeUtil.FormatType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (I18nFormatterTreeUtil.FormatType c : I18nFormatterTreeUtil.FormatType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static I18nFormatterTreeUtil.FormatType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-