public enum ExecutionPhase extends Enum<ExecutionPhase> implements Symbolic
Enum Constant and Description |
---|
CLEANUP
Cleanup working space.
|
EPILOGUE
Postprocessing output data.
|
EXPORT
Exporting output data.
|
FINALIZE
Finalization.
|
IMPORT
Importing input data.
|
INITIALIZE
Initialization.
|
MAIN
Processing data.
|
PROLOGUE
Preprocessing input data.
|
SETUP
Setup working space.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionPhase |
findFromSymbol(String symbol)
Returns an
ExecutionPhase corresponded to the symbol. |
String |
getSymbol()
Returns the symbol of this phase.
|
String |
toString() |
static ExecutionPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionPhase SETUP
public static final ExecutionPhase INITIALIZE
public static final ExecutionPhase IMPORT
public static final ExecutionPhase PROLOGUE
public static final ExecutionPhase MAIN
public static final ExecutionPhase EPILOGUE
public static final ExecutionPhase EXPORT
public static final ExecutionPhase FINALIZE
public static final ExecutionPhase CLEANUP
public static ExecutionPhase[] values()
for (ExecutionPhase c : ExecutionPhase.values()) System.out.println(c);
public static ExecutionPhase 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 nullpublic String getSymbol()
ExecutionScript
s.public static ExecutionPhase findFromSymbol(String symbol)
ExecutionPhase
corresponded to the symbol.symbol
- target symbolnull
if not foundIllegalArgumentException
- if some parameters were null
public String toString()
toString
in class Enum<ExecutionPhase>
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.