public static enum InvocationRequest.ReactorFailureBehavior extends java.lang.Enum<InvocationRequest.ReactorFailureBehavior>
| Enum Constant and Description |
|---|
FailAtEnd
Only fail the build afterwards.
|
FailFast
Stop at first failure in reactor builds
|
FailNever
NEVER fail the build, regardless of project result
|
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
longOption |
private java.lang.String |
shortOption |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getLongOption() |
java.lang.String |
getShortOption() |
static InvocationRequest.ReactorFailureBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvocationRequest.ReactorFailureBehavior |
valueOfByLongOption(java.lang.String longOption)
Returns the enumeration type which is related to the given long option.
|
static InvocationRequest.ReactorFailureBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationRequest.ReactorFailureBehavior FailFast
public static final InvocationRequest.ReactorFailureBehavior FailAtEnd
public static final InvocationRequest.ReactorFailureBehavior FailNever
private java.lang.String shortOption
private java.lang.String longOption
public static InvocationRequest.ReactorFailureBehavior[] values()
for (InvocationRequest.ReactorFailureBehavior c : InvocationRequest.ReactorFailureBehavior.values()) System.out.println(c);
public static InvocationRequest.ReactorFailureBehavior valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getShortOption()
public java.lang.String getLongOption()
public static InvocationRequest.ReactorFailureBehavior valueOfByLongOption(java.lang.String longOption)
longOption - The type which is searched for.InvocationRequest.ReactorFailureBehaviorjava.lang.IllegalArgumentException - in case of an long option which does not exists.