public static enum ActivityLink.LinkType extends Enum<ActivityLink.LinkType>
ActivityLink.getType()
Enum Constant and Description |
---|
END_TO_END
Used to define a link between the end time of the first activity and
the end time of the second activity.
|
END_TO_START
Used to define a link between the end time of the first activity and
the start time of the second activity.
|
START_TO_END
Used to define a link between the start time of the first activity
and the end time of the second activity.
|
START_TO_START
Used to define a link between the start time of the first activity
and the start time of the second activity.
|
Modifier and Type | Method and Description |
---|---|
static ActivityLink.LinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityLink.LinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityLink.LinkType END_TO_START
public static final ActivityLink.LinkType START_TO_END
public static final ActivityLink.LinkType START_TO_START
public static final ActivityLink.LinkType END_TO_END
public static ActivityLink.LinkType[] values()
for (ActivityLink.LinkType c : ActivityLink.LinkType.values()) System.out.println(c);
public static ActivityLink.LinkType 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 © 2020 Dirk Lemmermann Software & Consulting. All rights reserved.