public static enum DeliverException.Type extends Enum<DeliverException.Type>
| Enum Constant and Description |
|---|
CANCELLING |
DELIVER_IN_PROGRESS |
INTERPROJECT_DELIVER_DENIED |
MERGE_ERROR |
REBASE_IN_PROGRESS |
REQUIRES_REBASE |
UNABLE_TO_COMPLETE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DeliverException.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliverException.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliverException.Type REQUIRES_REBASE
public static final DeliverException.Type MERGE_ERROR
public static final DeliverException.Type INTERPROJECT_DELIVER_DENIED
public static final DeliverException.Type DELIVER_IN_PROGRESS
public static final DeliverException.Type UNABLE_TO_COMPLETE
public static final DeliverException.Type REBASE_IN_PROGRESS
public static final DeliverException.Type CANCELLING
public static final DeliverException.Type UNKNOWN
public static DeliverException.Type[] values()
for (DeliverException.Type c : DeliverException.Type.values()) System.out.println(c);
public static DeliverException.Type 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 © 2016–2018. All rights reserved.