Enum BuildChainGraph.GroupType
- java.lang.Object
-
- java.lang.Enum<BuildChainGraph.GroupType>
-
- jetbrains.buildServer.controllers.graph.BuildChainGraph.GroupType
-
- All Implemented Interfaces:
Serializable
,Comparable<BuildChainGraph.GroupType>
- Enclosing class:
- BuildChainGraph
public static enum BuildChainGraph.GroupType extends Enum<BuildChainGraph.GroupType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCHIVED_BUILD_TYPES
COMMON_PROJECT
COMPOSITE_BUILD
SINGLE_BUILD_TYPE
UNRELATED_BUILD_TYPES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuildChainGraph.GroupType
valueOf(String name)
Returns the enum constant of this type with the specified name.static BuildChainGraph.GroupType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_BUILD_TYPE
public static final BuildChainGraph.GroupType SINGLE_BUILD_TYPE
-
COMPOSITE_BUILD
public static final BuildChainGraph.GroupType COMPOSITE_BUILD
-
COMMON_PROJECT
public static final BuildChainGraph.GroupType COMMON_PROJECT
-
UNRELATED_BUILD_TYPES
public static final BuildChainGraph.GroupType UNRELATED_BUILD_TYPES
-
ARCHIVED_BUILD_TYPES
public static final BuildChainGraph.GroupType ARCHIVED_BUILD_TYPES
-
-
Method Detail
-
values
public static BuildChainGraph.GroupType[] 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 (BuildChainGraph.GroupType c : BuildChainGraph.GroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuildChainGraph.GroupType 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
-
-