public enum ActivityType extends Enum<ActivityType>
Enum Constant and Description |
---|
FINISH_FLAG |
FINISH_MILESTONE |
HAMMOCK |
LEVEL_OF_EFFORT |
RESOURCE_DEPENDENT |
START_FLAG |
START_MILESTONE |
TASK_DEPENDENT |
WBS_SUMMARY |
Modifier and Type | Method and Description |
---|---|
static ActivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityType TASK_DEPENDENT
public static final ActivityType RESOURCE_DEPENDENT
public static final ActivityType LEVEL_OF_EFFORT
public static final ActivityType START_MILESTONE
public static final ActivityType FINISH_MILESTONE
public static final ActivityType WBS_SUMMARY
public static final ActivityType HAMMOCK
public static final ActivityType START_FLAG
public static final ActivityType FINISH_FLAG
public static ActivityType[] values()
for (ActivityType c : ActivityType.values()) System.out.println(c);
public static ActivityType 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 © 2000–2024 Packwood Software. All rights reserved.