Package org.eclipse.jgit.api
Enum CheckoutResult.Status
- All Implemented Interfaces:
Serializable
,Comparable<CheckoutResult.Status>
- Enclosing class:
CheckoutResult
The status
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCheckout has not completed because of checkout conflictsAn Exception occurred during checkoutCheckout has completed, but some files could not be deletedThe call() method has not yet been executedCheckout completed normally -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic CheckoutResult.Status
Returns the enum constant of this type with the specified name.static CheckoutResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NOT_TRIED
The call() method has not yet been executed -
OK
Checkout completed normally -
CONFLICTS
Checkout has not completed because of checkout conflicts -
NONDELETED
Checkout has completed, but some files could not be deleted -
ERROR
An Exception occurred during checkout
-
-
Constructor Details
-
Status
private Status()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-