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