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