Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


oracle.as.scheduler
Enum WorkAssignment.SpecializationNode

java.lang.Object
  extended by java.lang.Enum<WorkAssignment.SpecializationNode>
      extended by oracle.as.scheduler.WorkAssignment.SpecializationNode

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WorkAssignment.SpecializationNode>
Enclosing class:
WorkAssignment

public static enum WorkAssignment.SpecializationNode
extends java.lang.Enum<WorkAssignment.SpecializationNode>

Enumerates the supported nodes for WorkAssignment specialization.


Enum Constant Summary
AND
          Binary 'and' operator.
CONDITION
          Condition that is leaf node.
NOT
          Unary 'not' operator.
OR
          Binary 'or' operator.

 

Method Summary
static WorkAssignment.SpecializationNode getNode(java.lang.String name)
          Returns the SpecializationNode for the given node name.
 boolean isBinary()
           
 boolean isBinaryOperator()
           
 boolean isCondition()
           
 boolean isOperator()
           
static boolean isSpecializationNode(java.lang.String name)
          Determines if the name is a valid name for a node in a specialization expression.
 boolean isUnaryOperator()
           
 java.lang.String toString()
           
 java.lang.String value()
           
static WorkAssignment.SpecializationNode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WorkAssignment.SpecializationNode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

AND

public static final WorkAssignment.SpecializationNode AND
Binary 'and' operator.

OR

public static final WorkAssignment.SpecializationNode OR
Binary 'or' operator.

NOT

public static final WorkAssignment.SpecializationNode NOT
Unary 'not' operator.

CONDITION

public static final WorkAssignment.SpecializationNode CONDITION
Condition that is leaf node.

Method Detail

values

public static WorkAssignment.SpecializationNode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (WorkAssignment.SpecializationNode c : WorkAssignment.SpecializationNode.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WorkAssignment.SpecializationNode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

isBinaryOperator

public boolean isBinaryOperator()

isUnaryOperator

public boolean isUnaryOperator()

isCondition

public boolean isCondition()

isOperator

public boolean isOperator()

isBinary

public boolean isBinary()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<WorkAssignment.SpecializationNode>

isSpecializationNode

public static boolean isSpecializationNode(java.lang.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; else false

getNode

public static WorkAssignment.SpecializationNode getNode(java.lang.String name)
Returns the SpecializationNode for the given node name.
Parameters:
name - node name
Throws:
IllegalArgumentException - if the node name is invalid

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


Copyright © 2008, 2012 Oracle. All rights reserved.