public static enum CheckoutResult.Status extends Enum<CheckoutResult.Status>
Enum Constant and Description |
---|
CONFLICTS
Checkout has not completed because of checkout conflicts
|
ERROR
An Exception occurred during checkout
|
NONDELETED
Checkout has completed, but some files could not be deleted
|
NOT_TRIED
The call() method has not yet been executed
|
OK
Checkout completed normally
|
Modifier and Type | Method and Description |
---|---|
static CheckoutResult.Status |
valueOf(String name)
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.
|
public static final CheckoutResult.Status NOT_TRIED
public static final CheckoutResult.Status OK
public static final CheckoutResult.Status CONFLICTS
public static final CheckoutResult.Status NONDELETED
public static final CheckoutResult.Status ERROR
public static CheckoutResult.Status[] values()
for (CheckoutResult.Status c : CheckoutResult.Status.values()) System.out.println(c);
public static CheckoutResult.Status valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 Eclipse JGit Project. All rights reserved.