|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ImportState>
com.agimatec.utility.fileimport.ImportState
public enum ImportState
Description:
User: roman.stumm
Date: 16.06.2008
Time: 12:08:04
Copyright: Agimatec GmbH
| Enum Constant Summary | |
|---|---|
CANCELLED
import cancelled, finished abnormally |
|
DONE
import completly done (with or without errors) |
|
IDLE
import not yet started / scheduled / waiting to receive lock |
|
RUNNING
import currently running |
|
| Method Summary | |
|---|---|
static ImportState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ImportState[] |
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 ImportState IDLE
public static final ImportState RUNNING
public static final ImportState DONE
public static final ImportState CANCELLED
| Method Detail |
|---|
public static ImportState[] values()
for (ImportState c : ImportState.values()) System.out.println(c);
public static ImportState valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||