public enum ElementHandling extends Enum<ElementHandling>
| Enum Constant and Description |
|---|
expand
Take the element from the effective POM.
|
flatten
Flatten the element.
|
interpolate
Take the element from the interpolated POM (original POM with variables interpolated).
|
keep
Take the element untouched from the original POM.
|
remove
Remove the element entirely so it will not be present in flattened POM.
|
resolve
Take the element from the resolved POM.
|
| Modifier and Type | Method and Description |
|---|---|
static ElementHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementHandling flatten
public static final ElementHandling expand
public static final ElementHandling resolve
public static final ElementHandling interpolate
public static final ElementHandling keep
public static final ElementHandling remove
public static ElementHandling[] values()
for (ElementHandling c : ElementHandling.values()) System.out.println(c);
public static ElementHandling 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 © 2014–2015 MojoHaus. All rights reserved.