public enum RelationshipType extends Enum<RelationshipType>
Enum Constant and Description |
---|
END_TO_END
Creates a relationship between the end time of the predecessor timeline
object and the end time of the successor timeline object.
|
END_TO_START
Creates a relationship between the end time of the predecessor timeline
object and the start time of the successor timeline object.
|
START_TO_END
Creates a relationship between the start time of the predecessor timeline
object and the end time of the successor timeline object.
|
START_TO_START
Creates a relationship between the start time of the predecessor timeline
object and the start time of the successor timeline object.
|
Modifier and Type | Method and Description |
---|---|
static RelationshipType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationshipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationshipType END_TO_START
public static final RelationshipType START_TO_END
public static final RelationshipType START_TO_START
public static final RelationshipType END_TO_END
public static RelationshipType[] values()
for (RelationshipType c : RelationshipType.values()) System.out.println(c);
public static RelationshipType 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.