Uses of Class
gov.nih.nci.cagrid.cqlquery.Predicate

Packages that use Predicate
gov.nih.nci.cagrid.cqlquery   
 

Uses of Predicate in gov.nih.nci.cagrid.cqlquery
 

Fields in gov.nih.nci.cagrid.cqlquery declared as Predicate
static Predicate Predicate.EQUAL_TO
           
static Predicate Predicate.GREATER_THAN
           
static Predicate Predicate.GREATER_THAN_EQUAL_TO
           
static Predicate Predicate.IS_NOT_NULL
           
static Predicate Predicate.IS_NULL
           
static Predicate Predicate.LESS_THAN
           
static Predicate Predicate.LESS_THAN_EQUAL_TO
           
static Predicate Predicate.LIKE
           
static Predicate Predicate.NOT_EQUAL_TO
           
 

Methods in gov.nih.nci.cagrid.cqlquery that return Predicate
static Predicate Predicate.fromString(java.lang.String value)
           
static Predicate Predicate.fromValue(java.lang.String value)
           
 Predicate Attribute.getPredicate()
          Gets the predicate value for this Attribute.
 

Methods in gov.nih.nci.cagrid.cqlquery with parameters of type Predicate
 void Attribute.setPredicate(Predicate predicate)
          Sets the predicate value for this Attribute.
 

Constructors in gov.nih.nci.cagrid.cqlquery with parameters of type Predicate
Attribute(java.lang.String name, Predicate predicate, java.lang.String value)