Package org.eclipse.jgit.api
Enum Class CheckoutResult.Status
- All Implemented Interfaces:
Serializable
,Comparable<CheckoutResult.Status>
,Constable
- Enclosing class:
- CheckoutResult
The status
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
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 class with the specified name.static CheckoutResult.Status[]
values()
Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-