Package jetbrains.buildServer.serverSide
Enum BuildFeature.PlaceToShow
- java.lang.Object
-
- java.lang.Enum<BuildFeature.PlaceToShow>
-
- jetbrains.buildServer.serverSide.BuildFeature.PlaceToShow
-
- All Implemented Interfaces:
Serializable
,Comparable<BuildFeature.PlaceToShow>
- Enclosing class:
- BuildFeature
public static enum BuildFeature.PlaceToShow extends Enum<BuildFeature.PlaceToShow>
Location of build feature settings in UI- Since:
- 7.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEANUP
Cleanup settings sectionFAILURE_REASON
Build failure conditions sectionGENERAL
Advanced build features section
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuildFeature.PlaceToShow
valueOf(String name)
Returns the enum constant of this type with the specified name.static BuildFeature.PlaceToShow[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL
public static final BuildFeature.PlaceToShow GENERAL
Advanced build features section
-
FAILURE_REASON
public static final BuildFeature.PlaceToShow FAILURE_REASON
Build failure conditions section
-
CLEANUP
public static final BuildFeature.PlaceToShow CLEANUP
Cleanup settings section
-
-
Method Detail
-
values
public static BuildFeature.PlaceToShow[] 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 (BuildFeature.PlaceToShow c : BuildFeature.PlaceToShow.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuildFeature.PlaceToShow 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
-
-