public static enum BundleHandoverResponse.FailureType extends Enum<BundleHandoverResponse.FailureType>
| Enum Constant and Description |
|---|
EXECUTION
A problem occured during execution inside the bundle target resource component.
|
INVALID_ACTION
Bundle target resource component does not know the requested action.
|
INVALID_PARAMETER
A parameter value is invalid (too long, not a number, ...
|
MISSING_PARAMETER
A parameter required to execute the action is missing.
|
PLUGIN_CONTAINER
A problem occured at the plugin container level.
|
| Modifier and Type | Method and Description |
|---|---|
static BundleHandoverResponse.FailureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BundleHandoverResponse.FailureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BundleHandoverResponse.FailureType INVALID_ACTION
public static final BundleHandoverResponse.FailureType MISSING_PARAMETER
public static final BundleHandoverResponse.FailureType INVALID_PARAMETER
public static final BundleHandoverResponse.FailureType PLUGIN_CONTAINER
public static final BundleHandoverResponse.FailureType EXECUTION
public static BundleHandoverResponse.FailureType[] values()
for (BundleHandoverResponse.FailureType c : BundleHandoverResponse.FailureType.values()) System.out.println(c);
public static BundleHandoverResponse.FailureType 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 © 2008-2014 Red Hat, Inc.. All Rights Reserved.