public static enum InvocationResult.State extends Enum<InvocationResult.State>
Enum Constant and Description |
---|
FAILED
The invocation was attempted but failed
|
NOT_SUPPORTED
the resolver performing the invocation knows that it cannot attempt to make the invocation
|
SUCCESSFUL
the invocation was successful
|
Modifier and Type | Method and Description |
---|---|
static InvocationResult.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvocationResult.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationResult.State NOT_SUPPORTED
public static final InvocationResult.State SUCCESSFUL
public static final InvocationResult.State FAILED
public static InvocationResult.State[] values()
for (InvocationResult.State c : InvocationResult.State.values()) System.out.println(c);
public static InvocationResult.State 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 © 2003–2016 MuleSoft, Inc.. All rights reserved.