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

Packages that use NumberCondition
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 in org.eclipse.emf.query.conditions.numbers
 

Subclasses of NumberCondition in org.eclipse.emf.query.conditions.numbers
static class NumberCondition.ByteValue
          A subclass of NumberCondition to be used to test for byte values Clients can either use the default implementation supplied or have their own.
static class NumberCondition.DoubleValue
          A subclass of NumberCondition to be used to test for double values Clients can either use the default implementation supplied or have their own.
static class NumberCondition.FloatValue
          A subclass of NumberCondition to be used to test for float values Clients can either use the default implementation supplied or have their own.
static class NumberCondition.IntegerValue
          A subclass of NumberCondition to be used to test for integer values Clients can either use the default implementation supplied or have their own.
static class NumberCondition.LongValue
          A subclass of NumberCondition to be used to test for long values Clients can either use the default implementation supplied or have their own.
static class NumberCondition.ShortValue
          A subclass of NumberCondition to be used to test for short values Clients can either use the default implementation supplied or have their own.
 

Methods in org.eclipse.emf.query.conditions.numbers that return NumberCondition
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.between(N lowerBound, boolean lowerInclusive, N upperBound, boolean upperInclusive)
          Obtains a condition checking for values in the range to the specified lowerBound and upperBound.
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.between(N lowerBound, N upperBound)
          Obtains a condition checking for values in the range to the specified lowerBound and upperBound (inclusive).
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.equals(N number)
          Obtains a condition checking for values equal to the specified number.
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.greaterThan(N number)
          Obtains a condition checking for values greater than the specified number.
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.greaterThanOrEquals(N number)
          Obtains a condition checking for values greater than or equal to the specified number.
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.lessThan(N number)
          Obtains a condition checking for values less than the specified number.
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.lessThanOrEquals(N number)
          Obtains a condition checking for values less than or equal to the specified number.
static
<N extends Number & Comparable<? super N>>
NumberCondition<N>
NumberCondition.notEquals(N number)
          Obtains a condition checking for values not equal equal to the specified number.
 


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