public enum ActivityType extends Enum<ActivityType> implements Serializable
| Enum Constant and Description |
|---|
Action
A requested of required change.
|
Operation
Normal processing.
|
Other
Another type of activity.
|
Process
A sequence of tasks.
|
Project
An organized activity to achieve a specific goal.
|
Task
A piece of work for a person, organization or engine.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the ActivityType enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
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 Operation
public static final ActivityType Action
public static final ActivityType Task
public static final ActivityType Process
public static final ActivityType Project
public static final ActivityType Other
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 nullpublic int getOrdinal()
public String getDescription()
public String getName()
Copyright © 2017–2018 ODPi. All rights reserved.