Package com.atlassian.bamboo.testutils
Enum Utf8Helper.Samples
- java.lang.Object
-
- java.lang.Enum<Utf8Helper.Samples>
-
- com.atlassian.bamboo.testutils.Utf8Helper.Samples
-
- All Implemented Interfaces:
Serializable
,Comparable<Utf8Helper.Samples>
- Enclosing class:
- Utf8Helper
public static enum Utf8Helper.Samples extends Enum<Utf8Helper.Samples>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARABIC
CHINESE_TRADITIONAL
GERMAN
JAPANESE
POLISH
RUSSIAN
SPECIAL_CHARACTERS
THAI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Utf8Helper.Samples
valueOf(String name)
Returns the enum constant of this type with the specified name.static Utf8Helper.Samples[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPECIAL_CHARACTERS
public static final Utf8Helper.Samples SPECIAL_CHARACTERS
-
ARABIC
public static final Utf8Helper.Samples ARABIC
-
CHINESE_TRADITIONAL
public static final Utf8Helper.Samples CHINESE_TRADITIONAL
-
GERMAN
public static final Utf8Helper.Samples GERMAN
-
JAPANESE
public static final Utf8Helper.Samples JAPANESE
-
POLISH
public static final Utf8Helper.Samples POLISH
-
RUSSIAN
public static final Utf8Helper.Samples RUSSIAN
-
THAI
public static final Utf8Helper.Samples THAI
-
-
Field Detail
-
value
public final String value
-
-
Method Detail
-
values
public static Utf8Helper.Samples[] 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 (Utf8Helper.Samples c : Utf8Helper.Samples.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Utf8Helper.Samples valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-