public static enum SagaEndpoint.SagaEndpointAction extends Enum<SagaEndpoint.SagaEndpointAction>
| Enum Constant and Description |
|---|
COMPENSATE |
COMPLETE |
| Modifier and Type | Method and Description |
|---|---|
static SagaEndpoint.SagaEndpointAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SagaEndpoint.SagaEndpointAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SagaEndpoint.SagaEndpointAction COMPLETE
public static final SagaEndpoint.SagaEndpointAction COMPENSATE
public static SagaEndpoint.SagaEndpointAction[] values()
for (SagaEndpoint.SagaEndpointAction c : SagaEndpoint.SagaEndpointAction.values()) System.out.println(c);
public static SagaEndpoint.SagaEndpointAction 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 nullApache Camel