Package com.atlassian.bamboo.logger
Enum DecoratedErrorDetailsImpl.RepositoryLevel
- java.lang.Object
-
- java.lang.Enum<DecoratedErrorDetailsImpl.RepositoryLevel>
-
- com.atlassian.bamboo.logger.DecoratedErrorDetailsImpl.RepositoryLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<DecoratedErrorDetailsImpl.RepositoryLevel>
- Enclosing class:
- DecoratedErrorDetailsImpl
public static enum DecoratedErrorDetailsImpl.RepositoryLevel extends Enum<DecoratedErrorDetailsImpl.RepositoryLevel>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DecoratedErrorDetailsImpl.RepositoryLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static DecoratedErrorDetailsImpl.RepositoryLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINKED
public static final DecoratedErrorDetailsImpl.RepositoryLevel LINKED
-
PLAN
public static final DecoratedErrorDetailsImpl.RepositoryLevel PLAN
-
BRANCH
public static final DecoratedErrorDetailsImpl.RepositoryLevel BRANCH
-
-
Method Detail
-
values
public static DecoratedErrorDetailsImpl.RepositoryLevel[] 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 (DecoratedErrorDetailsImpl.RepositoryLevel c : DecoratedErrorDetailsImpl.RepositoryLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecoratedErrorDetailsImpl.RepositoryLevel 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
-
-