public static enum PeopleFlowActionTypeService.Type extends Enum<PeopleFlowActionTypeService.Type>
| Enum Constant and Description |
|---|
APPROVAL
use this flag with the static factory to get a
PeopleFlowActionTypeService that creates
approval actions. |
NOTIFICATION
use this flag with the static factory to get a
PeopleFlowActionTypeService that creates
notification actions. |
| Modifier and Type | Method and Description |
|---|---|
static PeopleFlowActionTypeService.Type |
fromString(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.ActionRequestType |
getActionRequestType() |
String |
toString() |
static PeopleFlowActionTypeService.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PeopleFlowActionTypeService.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeopleFlowActionTypeService.Type NOTIFICATION
PeopleFlowActionTypeService that creates
notification actions.public static final PeopleFlowActionTypeService.Type APPROVAL
PeopleFlowActionTypeService that creates
approval actions.public static PeopleFlowActionTypeService.Type[] values()
for (PeopleFlowActionTypeService.Type c : PeopleFlowActionTypeService.Type.values()) System.out.println(c);
public static PeopleFlowActionTypeService.Type 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 String toString()
toString in class Enum<PeopleFlowActionTypeService.Type>public org.kuali.rice.kew.api.action.ActionRequestType getActionRequestType()
ActionRequestTypepublic static PeopleFlowActionTypeService.Type fromString(String s)
s - the type to retrieveCopyright © 2005–2017 The Kuali Foundation. All rights reserved.