public static enum InvocationRequest.ReactorFailureBehavior extends 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 | Method and Description |
---|---|
String |
getLongOption() |
String |
getShortOption() |
static InvocationRequest.ReactorFailureBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvocationRequest.ReactorFailureBehavior |
valueOfByLongOption(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
public static InvocationRequest.ReactorFailureBehavior[] values()
for (InvocationRequest.ReactorFailureBehavior c : InvocationRequest.ReactorFailureBehavior.values()) System.out.println(c);
public static InvocationRequest.ReactorFailureBehavior 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 nullpublic String getShortOption()
public String getLongOption()
public static InvocationRequest.ReactorFailureBehavior valueOfByLongOption(String longOption)
longOption
- The type which is searched for.InvocationRequest.ReactorFailureBehavior
IllegalArgumentException
- in case of an long option which does not exists.Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.