com.ibm.di.server
Class SearchCriteria.rscSearch

java.lang.Object
  extended by com.ibm.di.server.SearchCriteria.rscSearch
Enclosing class:
SearchCriteria

public static class SearchCriteria.rscSearch
extends java.lang.Object

This class is used internally.
This class is a simple Java Bean object that represents the built search criteria or a template to build it.


Field Summary
 int match
          This is the operator character:
 java.lang.String name
          The attribute name.
 boolean negate
          Tells whether the expression should be negated.
 java.lang.Object value
          This is the other attribute or its expanded value(s).
 
Constructor Summary
SearchCriteria.rscSearch(java.lang.String name, int match, java.lang.Object value)
          Creates s simple object of type SearchCriteria.rscSearch
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name
The attribute name.


match

public int match
This is the operator character:

See Also:
SearchCriteria.EXACT, SearchCriteria.INITIAL_STRING, SearchCriteria.FINAL_STRING, SearchCriteria.NOT_STRING, SearchCriteria.LESS_THAN, SearchCriteria.LESS_THAN_OR_EQUAL, SearchCriteria.GREATER_THAN, SearchCriteria.GREATER_THAN_OR_EQUAL

value

public java.lang.Object value
This is the other attribute or its expanded value(s).


negate

public boolean negate
Tells whether the expression should be negated.

Constructor Detail

SearchCriteria.rscSearch

public SearchCriteria.rscSearch(java.lang.String name,
                                int match,
                                java.lang.Object value)
Creates s simple object of type SearchCriteria.rscSearch

Parameters:
name - is the attribute name
match - is the operator.
value - is the other attribute or its expanded value(s).