Enum MoveEnvironmentStrategy
- java.lang.Object
-
- java.lang.Enum<MoveEnvironmentStrategy>
-
- com.atlassian.bamboo.deployments.environments.service.MoveEnvironmentStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<MoveEnvironmentStrategy>
public enum MoveEnvironmentStrategy extends Enum<MoveEnvironmentStrategy>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MoveEnvironmentStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static MoveEnvironmentStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP
public static final MoveEnvironmentStrategy TOP
Move to the top
-
UP
public static final MoveEnvironmentStrategy UP
Move up
-
DOWN
public static final MoveEnvironmentStrategy DOWN
Move down
-
BOTTOM
public static final MoveEnvironmentStrategy BOTTOM
Move to the bottom
-
AFTER
public static final MoveEnvironmentStrategy AFTER
Move after an environment
-
BEFORE
public static final MoveEnvironmentStrategy BEFORE
Move before an environment
-
-
Method Detail
-
values
public static MoveEnvironmentStrategy[] 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 (MoveEnvironmentStrategy c : MoveEnvironmentStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MoveEnvironmentStrategy 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
-
-