public enum MissingPropertyAction extends Enum<MissingPropertyAction>
FilterResourcesProcessor
hits a reference to a missing property.Enum Constant and Description |
---|
empty
Filtering will result in empty string (this was the default behaviour of Takari Lifecycle).
|
fail
Error will be reported failing the build.
|
leave
Filtering will leave the expression untouched (mimics maven-resources-plugin).
|
Modifier and Type | Field and Description |
---|---|
static MissingPropertyAction |
DEFAULT
The default action, to not have it scattered and different across multiple Mojos.
|
Modifier and Type | Method and Description |
---|---|
static MissingPropertyAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MissingPropertyAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MissingPropertyAction empty
public static final MissingPropertyAction leave
public static final MissingPropertyAction fail
public static final MissingPropertyAction DEFAULT
public static MissingPropertyAction[] values()
for (MissingPropertyAction c : MissingPropertyAction.values()) System.out.println(c);
public static MissingPropertyAction 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 nullCopyright © 2020. All rights reserved.