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.
  • Enum Constant Details

  • Method Details

    • values

      public static WorkAssignment.SpecializationNode[] 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

      public static WorkAssignment.SpecializationNode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String 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

      public String toString()
      The string representation of this enum. The value returned is equivalent to value of value().
      Overrides:
      toString in class Enum<WorkAssignment.SpecializationNode>
      Returns:
      the string representation.
    • isSpecializationNode

      public static boolean isSpecializationNode(String name)
      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, or false otherwise.
    • getNode

      public static WorkAssignment.SpecializationNode getNode(String name)
      The SpecializationNode for the given node name.
      Parameters:
      name - node name.