Package oracle.as.scheduler
Enum Class WorkAssignment.SpecializationProperty
java.lang.Object
java.lang.Enum<WorkAssignment.SpecializationProperty>
oracle.as.scheduler.WorkAssignment.SpecializationProperty
- All Implemented Interfaces:
Serializable
,Comparable<WorkAssignment.SpecializationProperty>
,java.lang.constant.Constable
- Enclosing class:
- WorkAssignment
public static enum WorkAssignment.SpecializationProperty
extends Enum<WorkAssignment.SpecializationProperty>
Enumerates the supported property names for WorkAssignment
specialization.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe name of the application associated with a request.The unique job definition (JOB_DEFINITION or JOBSET) identifier.The enterprise id for the request.The logical cluster associated with the request.The name of the product system property associated with a request.The request category system property associated with a request.The name of the user that submits a request. -
Method Summary
Modifier and TypeMethodDescriptiongetProperty
(String name) The specialization property associated with the given string.toString()
Equivalent tovalue()
.Enterprise Manager support to acquire a localized string value.value()
The string value assocaited with this specialation property.Returns the enum constant of this class with the specified name.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, valueOf
-
Enum Constant Details
-
APPLICATION
The name of the application associated with a request. -
PRODUCT
The name of the product system property associated with a request. -
USER_NAME
The name of the user that submits a request. -
REQUEST_CATEGORY
The request category system property associated with a request. -
DEFINITION
The unique job definition (JOB_DEFINITION or JOBSET) identifier. This specialization property is not applicable for Adhoc requests. -
ENTERPRISE_ID
The enterprise id for the request. -
LOGICAL_CLUSTER_NAME
The logical cluster associated with the request. SeeSystemProperty.LOGICAL_CLUSTER_NAME
.
-
-
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
-
getProperty
The specialization property associated with the given string.- Parameters:
name
- specialization name. This should correspond to the value return by the enum'stoString
method.- Returns:
- the SpecializationProperty associated with the given value.
-
value
The string value assocaited with this specialation property. -
toString
Equivalent tovalue()
.- Overrides:
toString
in classEnum<WorkAssignment.SpecializationProperty>
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- desired locale.- Returns:
- localized string.
-