public static enum TaskInfo.Phase extends Enum<TaskInfo.Phase>
Enum Constant and Description |
---|
EPILOGUE
Post-processing output data.
|
EXPORT
Exporting output data.
|
FINALIZE
Finalization.
|
IMPORT
Importing input data.
|
INITIALIZE
Initialization.
|
MAIN
Processing data.
|
PROLOGUE
Pre-processing input data.
|
Modifier and Type | Method and Description |
---|---|
String |
getSymbol()
Returns the symbol of this phase.
|
static TaskInfo.Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskInfo.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskInfo.Phase INITIALIZE
public static final TaskInfo.Phase IMPORT
public static final TaskInfo.Phase PROLOGUE
public static final TaskInfo.Phase MAIN
public static final TaskInfo.Phase EPILOGUE
public static final TaskInfo.Phase EXPORT
public static final TaskInfo.Phase FINALIZE
public static TaskInfo.Phase[] values()
for (TaskInfo.Phase c : TaskInfo.Phase.values()) System.out.println(c);
public static TaskInfo.Phase 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()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.