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