public static enum LoaderConfiguration.ClashResolutionType extends Enum<LoaderConfiguration.ClashResolutionType>
| Enum Constant and Description |
|---|
ABORT
The clash is resolved by aborting both the invocations.
|
ABORT_THAT
The clash is resolved by aborting the running invocation.
|
ABORT_THIS
The clash is resolved by aborting the invocation with an
InvocationClashException. |
JOIN
The clash is resolved by joining the two invocations.
|
| Modifier and Type | Method and Description |
|---|---|
static LoaderConfiguration.ClashResolutionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoaderConfiguration.ClashResolutionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoaderConfiguration.ClashResolutionType JOIN
public static final LoaderConfiguration.ClashResolutionType ABORT_THAT
public static final LoaderConfiguration.ClashResolutionType ABORT_THIS
InvocationClashException.public static final LoaderConfiguration.ClashResolutionType ABORT
public static LoaderConfiguration.ClashResolutionType[] values()
for (LoaderConfiguration.ClashResolutionType c : LoaderConfiguration.ClashResolutionType.values()) System.out.println(c);
public static LoaderConfiguration.ClashResolutionType 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 null