Enum BitbucketMirroredRepositoryStatus
- java.lang.Object
-
- java.lang.Enum<BitbucketMirroredRepositoryStatus>
-
- com.atlassian.bitbucket.jenkins.internal.model.BitbucketMirroredRepositoryStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<BitbucketMirroredRepositoryStatus>
public enum BitbucketMirroredRepositoryStatus extends Enum<BitbucketMirroredRepositoryStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLE
ERROR_AVAILABLE
ERROR_INITIALIZING
INITIALIZING
NOT_MIRRORED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BitbucketMirroredRepositoryStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static BitbucketMirroredRepositoryStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_MIRRORED
public static final BitbucketMirroredRepositoryStatus NOT_MIRRORED
-
INITIALIZING
public static final BitbucketMirroredRepositoryStatus INITIALIZING
-
AVAILABLE
public static final BitbucketMirroredRepositoryStatus AVAILABLE
-
ERROR_INITIALIZING
public static final BitbucketMirroredRepositoryStatus ERROR_INITIALIZING
-
ERROR_AVAILABLE
public static final BitbucketMirroredRepositoryStatus ERROR_AVAILABLE
-
-
Method Detail
-
values
public static BitbucketMirroredRepositoryStatus[] 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 (BitbucketMirroredRepositoryStatus c : BitbucketMirroredRepositoryStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BitbucketMirroredRepositoryStatus 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
-
-