|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StepDBO.Threaded>
com.buildforge.services.common.dbo.StepDBO.Threaded
public static enum StepDBO.Threaded
Indicates whether this step is threaded, not threaded, or threaded but joined only to the preceding thread block.
Enum Constant Summary | |
---|---|
JOIN
The step is threaded, but only joins with the threaded steps that come before it. |
|
NO
The step is not threaded. |
|
YES
The step is threaded, and may therefore be run concurrently with any other threaded steps that come immediately before or after it. |
Field Summary | |
---|---|
static java.lang.Class<StepDBO.Threaded> |
CLASS
|
char |
code
|
Method Summary | |
---|---|
static StepDBO.Threaded |
fromDB(char c)
|
static StepDBO.Threaded |
fromObject(java.lang.Object o)
|
static StepDBO.Threaded |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StepDBO.Threaded[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 StepDBO.Threaded NO
public static final StepDBO.Threaded YES
public static final StepDBO.Threaded JOIN
Field Detail |
---|
public static final java.lang.Class<StepDBO.Threaded> CLASS
public final char code
Method Detail |
---|
public static final StepDBO.Threaded[] values()
for(StepDBO.Threaded c : StepDBO.Threaded.values()) System.out.println(c);
public static StepDBO.Threaded valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic static StepDBO.Threaded fromDB(char c)
public static StepDBO.Threaded fromObject(java.lang.Object o) throws APIException
APIException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |