Package com.fluig.sdk.api.workflow.enums
Enum RequestStatusType
- java.lang.Object
-
- java.lang.Enum<RequestStatusType>
-
- com.fluig.sdk.api.workflow.enums.RequestStatusType
-
- All Implemented Interfaces:
Serializable
,Comparable<RequestStatusType>
public enum RequestStatusType extends Enum<RequestStatusType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static RequestStatusType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RequestStatusType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FINISHED_REQUESTS
public static final RequestStatusType FINISHED_REQUESTS
-
FINISHED_EXPIRED_REQUESTS
public static final RequestStatusType FINISHED_EXPIRED_REQUESTS
-
FINISHED_ON_TIME_REQUESTS
public static final RequestStatusType FINISHED_ON_TIME_REQUESTS
-
FINISHED_WARNING_REQUESTS
public static final RequestStatusType FINISHED_WARNING_REQUESTS
-
CANCELED_REQUESTS
public static final RequestStatusType CANCELED_REQUESTS
-
CANCELED_EXPIRED_REQUESTS
public static final RequestStatusType CANCELED_EXPIRED_REQUESTS
-
CANCELED_ON_TIME_REQUESTS
public static final RequestStatusType CANCELED_ON_TIME_REQUESTS
-
CANCELED_WARNING_REQUESTS
public static final RequestStatusType CANCELED_WARNING_REQUESTS
-
OPEN_REQUESTS
public static final RequestStatusType OPEN_REQUESTS
-
OPEN_EXPIRED_REQUESTS
public static final RequestStatusType OPEN_EXPIRED_REQUESTS
-
OPEN_ON_TIME_REQUESTS
public static final RequestStatusType OPEN_ON_TIME_REQUESTS
-
OPEN_WARNING_REQUESTS
public static final RequestStatusType OPEN_WARNING_REQUESTS
-
-
Method Detail
-
values
public static RequestStatusType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RequestStatusType c : RequestStatusType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequestStatusType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
-
-