Package com.atlassian.bamboo.testutils
Enum I18nTestHelper.I18nDefinition
- java.lang.Object
-
- java.lang.Enum<I18nTestHelper.I18nDefinition>
-
- com.atlassian.bamboo.testutils.I18nTestHelper.I18nDefinition
-
- All Implemented Interfaces:
Serializable
,Comparable<I18nTestHelper.I18nDefinition>
- Enclosing class:
- I18nTestHelper
public static enum I18nTestHelper.I18nDefinition extends Enum<I18nTestHelper.I18nDefinition>
Definition of a single localization .properties resource in Bamboo.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARTIFACT_DOWNLOADER_PLUGIN
BAMBOO_ACTION_SUPPORT
DEPLOYMENTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull String
getLocation()
Resource location.static I18nTestHelper.I18nDefinition
valueOf(String name)
Returns the enum constant of this type with the specified name.static I18nTestHelper.I18nDefinition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BAMBOO_ACTION_SUPPORT
public static final I18nTestHelper.I18nDefinition BAMBOO_ACTION_SUPPORT
-
DEPLOYMENTS
public static final I18nTestHelper.I18nDefinition DEPLOYMENTS
-
ARTIFACT_DOWNLOADER_PLUGIN
public static final I18nTestHelper.I18nDefinition ARTIFACT_DOWNLOADER_PLUGIN
-
-
Method Detail
-
values
public static I18nTestHelper.I18nDefinition[] 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 (I18nTestHelper.I18nDefinition c : I18nTestHelper.I18nDefinition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static I18nTestHelper.I18nDefinition 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
-
getLocation
@NotNull public @NotNull String getLocation()
Resource location.
-
-