JIVE Platform
Release 0.3.1

Uses of Class
edu.buffalo.cse.jive.ui.search.RelationalOperator

Packages that use RelationalOperator
edu.buffalo.cse.jive.ui.search JIVE runtime search support. 
edu.buffalo.cse.jive.ui.search.queries JIVE search queries. 
 

Uses of RelationalOperator in edu.buffalo.cse.jive.ui.search
 

Methods in edu.buffalo.cse.jive.ui.search that return RelationalOperator
static RelationalOperator RelationalOperator.fromString(String operator)
          Returns the RelationalOperator represented by the supplied string.
static RelationalOperator RelationalOperator.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RelationalOperator[] RelationalOperator.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of RelationalOperator in edu.buffalo.cse.jive.ui.search.queries
 

Fields in edu.buffalo.cse.jive.ui.search.queries declared as RelationalOperator
protected  RelationalOperator VariableChangedSearchQuery.operator
          A relational operator for a condition on the variable value.
protected  RelationalOperator MethodReturnedSearchQuery.operator
          A relational operator for a condition on the method return value.
protected  RelationalOperator InvariantViolatedSearchQuery.operator
          The invariant's relational operator.
 

Methods in edu.buffalo.cse.jive.ui.search.queries with parameters of type RelationalOperator
 boolean VariableChangedSearchQuery.AssignEventExporter.checkForMatch(JiveSearchPattern pattern, RelationalOperator operator, String rightValue)
          Returns whether the event is an assignment to a variable represented by the supplied JiveSearchPattern and the condition on the value holds.
 boolean MethodReturnedSearchQuery.ReturnEventExporter.checkForMatch(JiveSearchPattern pattern, RelationalOperator operator, String rightValue)
          Returns whether the event is a method return represented by the supplied JiveSearchPattern and whether the return value condition holds.
 

Constructors in edu.buffalo.cse.jive.ui.search.queries with parameters of type RelationalOperator
InvariantViolatedSearchQuery(JiveSearchPattern leftPattern, RelationalOperator operator, JiveSearchPattern rightPattern)
          Constructs a new search query with the supplied patterns and relational operator.
MethodReturnedSearchQuery(JiveSearchPattern pattern, RelationalOperator operator, String rightValue)
          Constructs a new search query with the supplied pattern and relational operator.
VariableChangedSearchQuery(JiveSearchPattern pattern, RelationalOperator operator, String value)
          Constructs a new search query with the supplied pattern, relational operator, and optional value.
 


JIVE Platform
Release 0.3.1