Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.3.0)
E15995-02


oracle.webcenter.search
Enum ComplexPredicate.ConjunctionOp

java.lang.Object
  extended by java.lang.Enum<ComplexPredicate.ConjunctionOp>
      extended by oracle.webcenter.search.ComplexPredicate.ConjunctionOp

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ComplexPredicate.ConjunctionOp>
Enclosing class:
ComplexPredicate

public static enum ComplexPredicate.ConjunctionOp
extends java.lang.Enum<ComplexPredicate.ConjunctionOp>

The operator to use to conjoin criteria together. The possible values are Or and And


Enum Constant Summary
And
          Join Conditions in this predicate using an AND
Or
          Join Conditions in this predicate using an OR

 

Method Summary
static ComplexPredicate.ConjunctionOp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ComplexPredicate.ConjunctionOp[] 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, toString, valueOf

 

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

 

Enum Constant Detail

Or

public static final ComplexPredicate.ConjunctionOp Or
Join Conditions in this predicate using an OR

And

public static final ComplexPredicate.ConjunctionOp And
Join Conditions in this predicate using an AND

Method Detail

values

public static ComplexPredicate.ConjunctionOp[] 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 (ComplexPredicate.ConjunctionOp c : ComplexPredicate.ConjunctionOp.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ComplexPredicate.ConjunctionOp 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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.3.0)
E15995-02


Copyright © 2009, 2010, Oracle. All rights reserved.