Oracle Data-aware Controls Reference

oracle.dacf.dataset
Class RowFilterCriteria

java.lang.Object
  |
  +--oracle.dacf.dataset.RowFilterCriteria

public class RowFilterCriteria
extends java.lang.Object

Internal: Applications should not use this class or its methods.


Field Summary
static int EQUAL
           
static int IS_NULL
           
static int NOT_EQUAL
           
static int UNDEFINED
           
 
Constructor Summary
RowFilterCriteria()
           
RowFilterCriteria(int operator, java.lang.Object[] values)
           
 
Method Summary
 java.lang.Object[] getCriteria()
          Returns the comparison values.
 int getOperator()
           
 void setCriteria(java.lang.Object[] criteria)
          Sets the comparison values.
 void setOperator(int operator)
          Specifies the comparison operator to be used.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

UNDEFINED

public static final int UNDEFINED

IS_NULL

public static final int IS_NULL

NOT_EQUAL

public static final int NOT_EQUAL

EQUAL

public static final int EQUAL
Constructor Detail

RowFilterCriteria

public RowFilterCriteria()

RowFilterCriteria

public RowFilterCriteria(int operator,
                         java.lang.Object[] values)
Method Detail

setOperator

public void setOperator(int operator)
Specifies the comparison operator to be used.

Parameters:
operator - one of the comparison operators
See Also:
getOperator(), getCriteria(), setCriteria(Object[] criteria)

getOperator

public int getOperator()

setCriteria

public void setCriteria(java.lang.Object[] criteria)
Sets the comparison values.

The array of values are used as operands when performing the comparison operation specified by getOperator(). The criteria values are needed for all but the IS_NULL comparison.

Parameters:
criteria - the array of comparison values
See Also:
getOperator(), getCriteria()

getCriteria

public java.lang.Object[] getCriteria()
Returns the comparison values.

The array of values are used as operands when performing the comparison operation specified by getOperator(). The criteria values are needed for all but the IS_NULL comparison.

Returns:
the array of comparison values
See Also:
getOperator(), getCriteria()

Oracle Data-aware Controls Reference