Uses of Class
org.eclipse.emf.query.conditions.numbers.NumberCondition.RelationalOperator

Packages that use NumberCondition.RelationalOperator
org.eclipse.emf.query.conditions.numbers EMF Query Conditions Numbers Package Specification This package exposes the basic numeric based Condition objects that are used to formulate queries. 
 

Uses of NumberCondition.RelationalOperator in org.eclipse.emf.query.conditions.numbers
 

Fields in org.eclipse.emf.query.conditions.numbers declared as NumberCondition.RelationalOperator
static NumberCondition.RelationalOperator NumberCondition.BETWEEN
          The numeric "between" operator.
static NumberCondition.RelationalOperator NumberCondition.EQUAL_TO
          The numeric = operator.
static NumberCondition.RelationalOperator NumberCondition.GREATER_THAN
          The numeric > operator.
static NumberCondition.RelationalOperator NumberCondition.GREATER_THAN_OR_EQUAL_TO
          The numeric >= operator.
static NumberCondition.RelationalOperator NumberCondition.LESS_THAN
          The numeric < operator.
static NumberCondition.RelationalOperator NumberCondition.LESS_THAN_OR_EQUAL_TO
          The numeric <= operator.
static NumberCondition.RelationalOperator NumberCondition.NOT_EQUAL_TO
          The numeric {@literal !
protected  NumberCondition.RelationalOperator NumberCondition.operator
          The operator of a relational condition.
 

Methods in org.eclipse.emf.query.conditions.numbers that return NumberCondition.RelationalOperator
static NumberCondition.RelationalOperator NumberCondition.RelationalOperator.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NumberCondition.RelationalOperator[] NumberCondition.RelationalOperator.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Constructors in org.eclipse.emf.query.conditions.numbers with parameters of type NumberCondition.RelationalOperator
NumberCondition(N number, NumberCondition.RelationalOperator operator)
          Initializes me with a number against which to test input values and a relational operator to apply in comparisons.
NumberCondition(N number, NumberCondition.RelationalOperator operator, NumberAdapter<? extends N> adapter)
          Initializes me with a number against which to test input values, a relational operator to apply in comparisons, and an adapter to convert those inputs to numbers.
 


Copyright 2002, 2007 IBM Corporation and others.
All Rights Reserved.