public enum UpdatedInfo extends Enum<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 |
---|---|
boolean |
equals(AbstractDbData.UpdatedInfo legacy) |
static UpdatedInfo |
fromLegacy(AbstractDbData.UpdatedInfo info) |
int |
getID() |
AbstractDbData.UpdatedInfo |
getLegacy() |
static UpdatedInfo |
valueOf(int updatedInfo) |
static UpdatedInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdatedInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdatedInfo UNKNOWN
public static final UpdatedInfo NOTUPDATED
public static final UpdatedInfo INTERRUPTED
public static final UpdatedInfo TOSUBMIT
public static final UpdatedInfo INERROR
public static final UpdatedInfo RUNNING
public static final UpdatedInfo DONE
public static UpdatedInfo[] values()
for (UpdatedInfo c : UpdatedInfo.values()) System.out.println(c);
public static 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 nullpublic static UpdatedInfo valueOf(int updatedInfo)
public boolean equals(AbstractDbData.UpdatedInfo legacy)
public static UpdatedInfo fromLegacy(AbstractDbData.UpdatedInfo info)
public AbstractDbData.UpdatedInfo getLegacy()
public int getID()
Copyright © 2009–2020 Waarp. All rights reserved.