Enum SpaceFeatures.UnconditionalPublishingMode
- java.lang.Object
-
- java.lang.Enum<SpaceFeatures.UnconditionalPublishingMode>
-
- jetbrains.buildServer.serverSide.oauth.space.SpaceFeatures.UnconditionalPublishingMode
-
- All Implemented Interfaces:
Serializable
,Comparable<SpaceFeatures.UnconditionalPublishingMode>
- Enclosing interface:
- SpaceFeatures
public static enum SpaceFeatures.UnconditionalPublishingMode extends Enum<SpaceFeatures.UnconditionalPublishingMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_BUILDS
NO_DEPENDENCIES
-
Field Summary
Fields Modifier and Type Field Description static SpaceFeatures.UnconditionalPublishingMode
DEFAULT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpaceFeatures.UnconditionalPublishingMode
of(String stringValue)
static SpaceFeatures.UnconditionalPublishingMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpaceFeatures.UnconditionalPublishingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_BUILDS
public static final SpaceFeatures.UnconditionalPublishingMode ALL_BUILDS
-
NO_DEPENDENCIES
public static final SpaceFeatures.UnconditionalPublishingMode NO_DEPENDENCIES
-
-
Field Detail
-
DEFAULT
public static final SpaceFeatures.UnconditionalPublishingMode DEFAULT
-
-
Method Detail
-
values
public static SpaceFeatures.UnconditionalPublishingMode[] 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 (SpaceFeatures.UnconditionalPublishingMode c : SpaceFeatures.UnconditionalPublishingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpaceFeatures.UnconditionalPublishingMode 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
-
of
public static SpaceFeatures.UnconditionalPublishingMode of(@NotNull String stringValue)
-
-