Package oracle.as.scheduler
Enum Class WorkAssignment.SpecializationNode
java.lang.Object
java.lang.Enum<WorkAssignment.SpecializationNode>
oracle.as.scheduler.WorkAssignment.SpecializationNode
- All Implemented Interfaces:
Serializable
,Comparable<WorkAssignment.SpecializationNode>
,java.lang.constant.Constable
- Enclosing class:
- WorkAssignment
public static enum WorkAssignment.SpecializationNode
extends Enum<WorkAssignment.SpecializationNode>
Enumerates the supported nodes 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 Constants -
Method Summary
Modifier and TypeMethodDescriptionThe SpecializationNode for the given node name.boolean
isBinary()
Indicates if this node enum is binary node.boolean
Indicates if this node enum represents a binary operator.boolean
Indicates if this node enum represents a condition.boolean
Indicates if this node enum represents an operator.static boolean
isSpecializationNode
(String name) Determines if the name is a valid name for a node in a specialization expression.boolean
Indicates if this node enum represents a unary operator.toString()
The string representation of this enum.value()
The string value associated with this node enum.Returns the enum constant of this class with the specified name.static WorkAssignment.SpecializationNode[]
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
-
AND
Binary 'and' operator. -
OR
Binary 'or' operator. -
NOT
Unary 'not' operator. -
CONDITION
Condition that is leaf node.
-
-
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
The string value associated with this node enum.- Returns:
- assocaited string value
-
isBinaryOperator
public boolean isBinaryOperator()Indicates if this node enum represents a binary operator.- Returns:
- true if it represents a binary operator, or false otherwise.
-
isUnaryOperator
public boolean isUnaryOperator()Indicates if this node enum represents a unary operator.- Returns:
- true if it represents a unary operator, or false otherwise.
-
isCondition
public boolean isCondition()Indicates if this node enum represents a condition.- Returns:
- true if it represents a condition, or false otherwise.
-
isOperator
public boolean isOperator()Indicates if this node enum represents an operator.- Returns:
- true if it represents an operator, or false otherwise.
-
isBinary
public boolean isBinary()Indicates if this node enum is binary node.- Returns:
- true if it represents a binary node, or false otherwise.
-
toString
The string representation of this enum. The value returned is equivalent to value ofvalue()
.- Overrides:
toString
in classEnum<WorkAssignment.SpecializationNode>
- Returns:
- the string representation.
-
isSpecializationNode
Determines if the name is a valid name for a node in a specialization expression.- Returns:
true
if the name is a valid node name, orfalse
otherwise.
-
getNode
The SpecializationNode for the given node name.- Parameters:
name
- node name.
-