public enum ActionRequestStatus extends Enum<ActionRequestStatus> implements Coded
Enum Constant and Description |
---|
ACTIVATED
Code to indicate the request is currently active
|
DONE
Code to indicate the request has been satisfied
|
INITIALIZED
Code to indicate the request has not been activated
|
Modifier and Type | Method and Description |
---|---|
static ActionRequestStatus |
fromCode(String code) |
String |
getCode()
The code value for this object.
|
String |
getLabel() |
static ActionRequestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionRequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionRequestStatus DONE
public static final ActionRequestStatus ACTIVATED
public static final ActionRequestStatus INITIALIZED
public static ActionRequestStatus[] values()
for (ActionRequestStatus c : ActionRequestStatus.values()) System.out.println(c);
public static ActionRequestStatus 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 getCode()
Coded
public static ActionRequestStatus fromCode(String code)
Copyright © 2005–2014 The Kuali Foundation. All rights reserved.