|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Relationship.RelationshipType>
com.prozima.pengine.Relationship.RelationshipType
public static enum Relationship.RelationshipType
Defines the type of relationshipType which a schedule node can have with other nodes.
| Enum Constant Summary | |
|---|---|
FINISHFINISH
Schedule node cannot finish before the finish date of another node. |
|
FINISHSTART
Schedule node cannot start before the finish date of another node. |
|
STARTFINISH
Schedule node cannot finish before the start date of another node. |
|
STARTSTART
Schedule node cannot start before the start date of other node. |
|
| Method Summary | |
|---|---|
static Relationship.RelationshipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Relationship.RelationshipType[] |
values()
Returns an array containing the constants of this enum type, in the order they are 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 Relationship.RelationshipType FINISHFINISH
public static final Relationship.RelationshipType FINISHSTART
public static final Relationship.RelationshipType STARTFINISH
public static final Relationship.RelationshipType STARTSTART
| Method Detail |
|---|
public static Relationship.RelationshipType 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 name
java.lang.NullPointerException - if the argument is nullpublic static Relationship.RelationshipType[] values()
for (Relationship.RelationshipType c : Relationship.RelationshipType.values()) System.out.println(c);
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||