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