Enum Class PeopleFlowActionTypeService.Type
java.lang.Object
java.lang.Enum<PeopleFlowActionTypeService.Type>
org.kuali.rice.krms.impl.peopleflow.PeopleFlowActionTypeService.Type
- All Implemented Interfaces:
Serializable,Comparable<PeopleFlowActionTypeService.Type>,Constable
- Enclosing class:
PeopleFlowActionTypeService
enum used to specify the action type to be specified in the vended actions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionuse this flag with the static factory to get aPeopleFlowActionTypeServicethat creates approval actions.use this flag with the static factory to get aPeopleFlowActionTypeServicethat creates notification actions. -
Method Summary
Modifier and TypeMethodDescriptionfromString(String s) for each type, check the input with the lowercase version of the type name, and returns any match.org.kuali.rice.kew.api.action.ActionRequestTypetoString()Returns the enum constant of this class with the specified name.static PeopleFlowActionTypeService.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOTIFICATION
use this flag with the static factory to get aPeopleFlowActionTypeServicethat creates notification actions. -
APPROVAL
use this flag with the static factory to get aPeopleFlowActionTypeServicethat creates approval actions.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<PeopleFlowActionTypeService.Type>
-
getActionRequestType
public org.kuali.rice.kew.api.action.ActionRequestType getActionRequestType()- Returns:
ActionRequestType
-
fromString
for each type, check the input with the lowercase version of the type name, and returns any match.- Parameters:
s- the type to retrieve- Returns:
- the type, or null if a match is not found.
-