Package oracle.as.scheduler
Enum Class HandlerStatus
- All Implemented Interfaces:
Serializable
,Comparable<HandlerStatus>
,java.lang.constant.Constable
Enumeration of application callout actions. Callouts allow an
application to customize pre-processing and post-processing of requests.
The action returned by a callback handler determines how the subsequent
request processing will proceed.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionStop processing the request with a business error.Cancel processing the request.Delay processing of the request.Continue processing the request.Suspend request processing on server quiesce detection.Stop processing the request with a system error.Unknown or invalid status.Continue processing the request with a warning. -
Method Summary
Modifier and TypeMethodDescriptionstatic HandlerStatus
fromString
(String handlerStatusStr) Converts a stringified handler status into a HandlerStatus object.Enterprise Manager support to acquire a localized string value.static HandlerStatus
Returns the enum constant of this class with the specified name.static HandlerStatus[]
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 status. -
PROCEED
Continue processing the request. -
DELAY
Delay processing of the request. -
CANCEL
Cancel processing the request. -
WARN
Continue processing the request with a warning. -
BIZ_ERROR
Stop processing the request with a business error. -
SYSTEM_ERROR
Stop processing the request with a system error. -
SUSPEND
Suspend request processing on server quiesce detection.
-
-
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
-
fromString
Converts a stringified handler status into a HandlerStatus object.- Parameters:
handlerStatusStr
- the string to covert- Returns:
- the handler status derived from
handlerStatusStr
orHandlerStatus.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
-