|
ALBPM Process API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StatusScope>
fuego.papi.StatusScope
public enum StatusScope
Enumeration that represents the possible combination of instances status to set in a search filter Possible values are: - ONLY_INPROCESS: Only instances that are In Process - ONLY_COMPLETED: Only instances that are Completed - ONLY_ABORTED: Only instances that are Aborted - INPROCESS_AND_COMPLETED: Instances that are Completed or In Process - INPROCESS_AND_ABORTED: Instances that are In Process or Aborted - ABORTED_AND_COMPLETED: Instances that are Aborted or Completed - ALL: Instances in any status
Enum Constant Summary | |
---|---|
ABORTED_AND_COMPLETED
Instances that are Aborted or Completed |
|
ALL
Instances in any status |
|
INPROCESS_AND_ABORTED
Instances that are In Process or Aborted |
|
INPROCESS_AND_COMPLETED
Instances that are Completed or In Process |
|
ONLY_ABORTED
Only instances that are Aborted |
|
ONLY_COMPLETED
Only instances that are Completed |
|
ONLY_INPROCESS
Only instances that are In Process |
Method Summary | |
---|---|
fuego.resources.Msg |
getMsg()
|
String |
getString()
|
String |
getString(Locale locale)
|
boolean |
isAborted()
|
boolean |
isCompleted()
|
boolean |
isInProcess()
|
static StatusScope |
valueOf(boolean inProcess,
boolean completed,
boolean aborted)
Creates a StatusScope with the combination of boolean values recieved as parameters. |
static StatusScope |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static StatusScope[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StatusScope ONLY_INPROCESS
public static final StatusScope ONLY_COMPLETED
public static final StatusScope ONLY_ABORTED
public static final StatusScope INPROCESS_AND_COMPLETED
public static final StatusScope INPROCESS_AND_ABORTED
public static final StatusScope ABORTED_AND_COMPLETED
public static final StatusScope ALL
Method Detail |
---|
public static final StatusScope[] values()
for(StatusScope c : StatusScope.values()) System.out.println(c);
public static StatusScope valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String getString()
getString
in interface fuego.resources.Internationalizable
public String getString(Locale locale)
public fuego.resources.Msg getMsg()
public boolean isInProcess()
public boolean isCompleted()
public boolean isAborted()
public static StatusScope valueOf(boolean inProcess, boolean completed, boolean aborted)
|
ALBPM Process API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |