public static enum AbstractCompileMojo.Proc extends Enum<AbstractCompileMojo.Proc>
| Enum Constant and Description |
|---|
none |
only |
onlyEX
Like
only, but processes all sources if any source needs to be processed. |
proc |
procEX
Like
proc, but processes and compiles all sources if any source needs to be processed and/or compiled. |
| Modifier and Type | Method and Description |
|---|---|
static AbstractCompileMojo.Proc |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractCompileMojo.Proc[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractCompileMojo.Proc proc
public static final AbstractCompileMojo.Proc only
public static final AbstractCompileMojo.Proc none
public static final AbstractCompileMojo.Proc procEX
proc, but processes and compiles all sources if any source needs to be processed and/or compiled.
This is an experimental workaround for jdt compiler bug 447546, has no effect on javac-based compilers
https://bugs.eclipse.org/bugs/show_bug.cgi?id=447546public static final AbstractCompileMojo.Proc onlyEX
only, but processes all sources if any source needs to be processed.
This is an experimental workaround for jdt compiler bug 447546, has no effect on javac-based compilers
https://bugs.eclipse.org/bugs/show_bug.cgi?id=447546public static AbstractCompileMojo.Proc[] values()
for (AbstractCompileMojo.Proc c : AbstractCompileMojo.Proc.values()) System.out.println(c);
public static AbstractCompileMojo.Proc 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 © 2017. All rights reserved.