Package jetbrains.buildServer.vcs
Enum FullCheckoutReason
- java.lang.Object
-
- java.lang.Enum<FullCheckoutReason>
-
- jetbrains.buildServer.vcs.FullCheckoutReason
-
- All Implemented Interfaces:
Serializable
,Comparable<FullCheckoutReason>
public enum FullCheckoutReason extends Enum<FullCheckoutReason>
- Author:
- Sergey.Anchipolevsky Date: 25.03.2009
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canFailBuildInsteadOfCleanCheckout()
String
getDescription()
static FullCheckoutReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static FullCheckoutReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROOT_DIRECTORY_IS_EMPTY
public static final FullCheckoutReason ROOT_DIRECTORY_IS_EMPTY
-
CLEAN_ALL_FILES_BEFORE_BUILD_SELECTED
public static final FullCheckoutReason CLEAN_ALL_FILES_BEFORE_BUILD_SELECTED
-
CLEAN_CHECKOUT_REQUESTED
public static final FullCheckoutReason CLEAN_CHECKOUT_REQUESTED
-
ROOT_DIRECTORY_WAS_CLEANED_UP_WITH_ERRORS
public static final FullCheckoutReason ROOT_DIRECTORY_WAS_CLEANED_UP_WITH_ERRORS
-
NO_EXISTING_VERSION_ON_AGENT
public static final FullCheckoutReason NO_EXISTING_VERSION_ON_AGENT
-
REQUESTED_VERSION_OLDER_THAN_EXISTING_ON_AGENT
public static final FullCheckoutReason REQUESTED_VERSION_OLDER_THAN_EXISTING_ON_AGENT
-
VCS_SETTINGS_HAVE_BEEN_CHANGED
public static final FullCheckoutReason VCS_SETTINGS_HAVE_BEEN_CHANGED
-
UNKNOWN
public static final FullCheckoutReason UNKNOWN
-
-
Method Detail
-
values
public static FullCheckoutReason[] 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 (FullCheckoutReason c : FullCheckoutReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FullCheckoutReason 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
-
getDescription
@NotNull public String getDescription()
-
canFailBuildInsteadOfCleanCheckout
public boolean canFailBuildInsteadOfCleanCheckout()
-
-