Package oracle.as.scheduler
Enum Class RequestMode
- All Implemented Interfaces:
Serializable
,Comparable<RequestMode>
,java.lang.constant.Constable
Enum of the request modes.
The request mode affects how a request will be processed.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic RequestMode
fromString
(String requestModeStr) Converts a stringified request mode into a RequestMode object.Enterprise Manager support to acquire a localized string value.int
value()
The numeric value associated with the RequestMode.static RequestMode
valueOf
(int value) The RequestMode associated with the given value.static RequestMode
Returns the enum constant of this class with the specified name.static RequestMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Unknown
Unknown or invalid mode. -
Undefined
Undefined mode.An unvalidated request is set to this mode. It will be set to the the appropriate mode once it is successfully validated.
-
Standard
Standard mode.No Fusion support.
-
Fusion
Full Fusion application environment mode with CP extensions.Request processing adheres to the behavior of Fusion with CP extensions.
-
Extended
Extended mode.In general, the request should be capable of running in Standard mode but the processing may use certain Fusion features such as ApplSession and Attachments API. The application logic would typically not require such features or at least do so in some flexible or dynamic manner.
-
-
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
-
value
public int value()The numeric value associated with the RequestMode.- Returns:
- value for this request mode.
-
valueOf
The RequestMode associated with the given value.- Parameters:
value
- the value to convert to request mode.- Returns:
- associated request mode.
-
fromString
Converts a stringified request mode into a RequestMode object.- Parameters:
requestModeStr
- the string to convert- Returns:
- the request mode derived from
requestModeStr
, orRequestMode.Unknown
if the conversion could not be made.
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-