public static enum MisplacedClassProcessorFactory.Strategy extends java.lang.Enum<MisplacedClassProcessorFactory.Strategy>
| Enum Constant and Description |
|---|
FATAL
Strategy which fails-fast with an exception upon hitting misplaced class.
|
MOVE
Strategy which renames misplaced classes to their "proper" location based on their
fully-qualified class name.
|
OMIT
Strategy which omits misplaced classes from the output.
|
SKIP
Strategy which skips past misplaced classes, excluding them from shading.
|
| Modifier and Type | Method and Description |
|---|---|
static MisplacedClassProcessorFactory.Strategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MisplacedClassProcessorFactory.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MisplacedClassProcessorFactory.Strategy FATAL
public static final MisplacedClassProcessorFactory.Strategy SKIP
public static final MisplacedClassProcessorFactory.Strategy OMIT
public static final MisplacedClassProcessorFactory.Strategy MOVE
public static MisplacedClassProcessorFactory.Strategy[] values()
for (MisplacedClassProcessorFactory.Strategy c : MisplacedClassProcessorFactory.Strategy.values()) System.out.println(c);
public static MisplacedClassProcessorFactory.Strategy 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 null