public static enum AbstractDbData.UpdatedInfo extends Enum<AbstractDbData.UpdatedInfo>
Enum Constant and Description |
---|
DONE
All done run status
|
INERROR
In error run status
|
INTERRUPTED
Interrupted status (stop or cancel)
|
NOTUPDATED
Not updated run status
|
RUNNING
Running status
|
TOSUBMIT
Updated run status meaning ready to be submitted
|
UNKNOWN
Unknown run status
|
Modifier and Type | Method and Description |
---|---|
static AbstractDbData.UpdatedInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractDbData.UpdatedInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractDbData.UpdatedInfo UNKNOWN
public static final AbstractDbData.UpdatedInfo NOTUPDATED
public static final AbstractDbData.UpdatedInfo INTERRUPTED
public static final AbstractDbData.UpdatedInfo TOSUBMIT
public static final AbstractDbData.UpdatedInfo INERROR
public static final AbstractDbData.UpdatedInfo RUNNING
public static final AbstractDbData.UpdatedInfo DONE
public static AbstractDbData.UpdatedInfo[] values()
for (AbstractDbData.UpdatedInfo c : AbstractDbData.UpdatedInfo.values()) System.out.println(c);
public static AbstractDbData.UpdatedInfo 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 © 2009–2020 Waarp. All rights reserved.