Enum SpaceFeatures.Feature
- java.lang.Object
-
- java.lang.Enum<SpaceFeatures.Feature>
-
- jetbrains.buildServer.serverSide.oauth.space.SpaceFeatures.Feature
-
- All Implemented Interfaces:
Serializable
,Comparable<SpaceFeatures.Feature>
- Enclosing interface:
- SpaceFeatures
public static enum SpaceFeatures.Feature extends Enum<SpaceFeatures.Feature>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SpaceFeatures.Feature
getDependsOn()
String
getParameter()
boolean
isEnabledByDefault()
static SpaceFeatures.Feature
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpaceFeatures.Feature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MERGE_REQUESTS
public static final SpaceFeatures.Feature MERGE_REQUESTS
-
COMMIT_STATUS_PUBLISHER
public static final SpaceFeatures.Feature COMMIT_STATUS_PUBLISHER
-
ENHANCED_INTEGRATION
public static final SpaceFeatures.Feature ENHANCED_INTEGRATION
-
USE_REFRESHABLE_TOKENS
public static final SpaceFeatures.Feature USE_REFRESHABLE_TOKENS
-
VERIFY_PAYLOADS
public static final SpaceFeatures.Feature VERIFY_PAYLOADS
-
ONDEMAND
public static final SpaceFeatures.Feature ONDEMAND
-
USE_SPACE_TAB
public static final SpaceFeatures.Feature USE_SPACE_TAB
-
HIDE_REPOS_FOR_PENDING_CONNECTIONS
public static final SpaceFeatures.Feature HIDE_REPOS_FOR_PENDING_CONNECTIONS
-
FORCE_CLOSE_SPACE_WINDOW
public static final SpaceFeatures.Feature FORCE_CLOSE_SPACE_WINDOW
-
UNCONDITIONAL_COMMIT_STATUS
public static final SpaceFeatures.Feature UNCONDITIONAL_COMMIT_STATUS
-
UNCONDITIONAL_MR_COMMENTS
public static final SpaceFeatures.Feature UNCONDITIONAL_MR_COMMENTS
-
UNCONDITIONAL_STATUS_REPORT
public static final SpaceFeatures.Feature UNCONDITIONAL_STATUS_REPORT
-
PUBLISH_MR_COMMENTS
public static final SpaceFeatures.Feature PUBLISH_MR_COMMENTS
-
ALLOW_NON_SECURE_CONNECTION
public static final SpaceFeatures.Feature ALLOW_NON_SECURE_CONNECTION
-
SEND_EPOCH_POLICY
public static final SpaceFeatures.Feature SEND_EPOCH_POLICY
-
-
Method Detail
-
values
public static SpaceFeatures.Feature[] 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.Feature c : SpaceFeatures.Feature.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.Feature 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
-
getParameter
@NotNull public String getParameter()
-
isEnabledByDefault
public boolean isEnabledByDefault()
-
getDependsOn
@Nullable public SpaceFeatures.Feature getDependsOn()
-
-