Enum CloudStateHolder.ChangeState
- java.lang.Object
-
- java.lang.Enum<CloudStateHolder.ChangeState>
-
- jetbrains.buildServer.clouds.server.impl.CloudStateHolder.ChangeState
-
- All Implemented Interfaces:
Serializable
,Comparable<CloudStateHolder.ChangeState>
- Enclosing class:
- CloudStateHolder
public static enum CloudStateHolder.ChangeState extends Enum<CloudStateHolder.ChangeState>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isStillExists()
static CloudStateHolder.ChangeState
valueOf(String name)
Returns the enum constant of this type with the specified name.static CloudStateHolder.ChangeState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCHANGED
public static final CloudStateHolder.ChangeState UNCHANGED
-
CHANGED
public static final CloudStateHolder.ChangeState CHANGED
-
ADDED
public static final CloudStateHolder.ChangeState ADDED
-
DELETED
public static final CloudStateHolder.ChangeState DELETED
-
-
Method Detail
-
values
public static CloudStateHolder.ChangeState[] 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 (CloudStateHolder.ChangeState c : CloudStateHolder.ChangeState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudStateHolder.ChangeState 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
-
isStillExists
public boolean isStillExists()
-
-