|
terp - the ANT Tasks v1.3.304 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CompilerPhase>
com.codemesh.terp.ant.compiler.CompilerPhase
public enum CompilerPhase
The compiler phase which we're in. Not all options apply to all compilation phases. Some only apply to compilation, others to linking, others to both.
| Enum Constant Summary | |
|---|---|
Compile
The compiler invocation that converts source files to object files. |
|
CompileAndLink
The compiler invocation that links but has some switches that are handled by the compiler and some that are handled by the linker. |
|
Link
The compiler/linker invocation that converts object files and other link inputs to a finished module. |
|
PostLink
The build step after all compilation and link steps have been performed. |
|
PreCompile
The build step just before the compiler is invoked. |
|
PreLink
The build step just before the linker is invoked. |
|
| Method Summary | |
|---|---|
static CompilerPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CompilerPhase[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CompilerPhase Compile
public static final CompilerPhase Link
public static final CompilerPhase CompileAndLink
public static final CompilerPhase PreCompile
public static final CompilerPhase PreLink
public static final CompilerPhase PostLink
| Method Detail |
|---|
public static CompilerPhase[] values()
for (CompilerPhase c : CompilerPhase.values()) System.out.println(c);
public static CompilerPhase 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 name
java.lang.NullPointerException - if the argument is null
|
terp - the ANT Tasks v1.3.304 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||