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

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

Subclasses of NumberAdapter in org.eclipse.emf.query.conditions.numbers
static class NumberAdapter.ByteAdapter
          A subclass of NumberAdapter to be used to adapt an argument object to byte values Clients can either use the default implementation supplied or have their own.
static class NumberAdapter.DoubleAdapter
          A subclass of NumberAdapter to be used to adapt an argument object to double values Clients can either use the default implementation supplied or have their own.
static class NumberAdapter.FloatAdapter
          A subclass of NumberAdapter to be used to adapt an argument object to float values Clients can either use the default implementation supplied or have their own.
static class NumberAdapter.IntegerAdapter
          A subclass of NumberAdapter to be used to adapt an argument object to int values Clients can either use the default implementation supplied or have their own.
static class NumberAdapter.LongAdapter
          A subclass of NumberAdapter to be used to adapt an argument object to long values Clients can either use the default implementation supplied or have their own.
static class NumberAdapter.ShortAdapter
          A subclass of NumberAdapter to be used to adapt an argument object to short values Clients can either use the default implementation supplied or have their own.
 

Methods in org.eclipse.emf.query.conditions.numbers that return NumberAdapter
static
<N extends Number & Comparable<? super N>>
NumberAdapter<N>
NumberAdapter.getDefault()
          Obtains a default number adapter, that simply assumes that input values are of the required number kind and casts them appropriately.
 

Constructors in org.eclipse.emf.query.conditions.numbers with parameters of type NumberAdapter
NumberCondition(N lowerBound, boolean lowerInclusive, N upperBound, boolean upperInclusive, NumberAdapter<? extends N> adapter)
          Initializes me with upper and lower bounds against which to test input values, and an adapter to convert those inputs to numbers.
NumberCondition(N lowerBound, N upperBound, NumberAdapter<? extends N> adapter)
          Initializes me with upper and lower bounds against which to test input values, and an adapter to convert those inputs to numbers.
NumberCondition(N number, NumberAdapter<? extends N> adapter)
          Initializes me with a single number against which to test input values, and an adapter to convert those inputs to numbers.
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.