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