|
org.eclipse.emf.query.conditions.numbers
Class NumberCondition.FloatValue
java.lang.Object
org.eclipse.emf.query.conditions.Condition
org.eclipse.emf.query.conditions.DataTypeCondition<N>
org.eclipse.emf.query.conditions.numbers.NumberCondition<
Float>
org.eclipse.emf.query.conditions.numbers.NumberCondition.FloatValue
-
Enclosing class:
-
NumberCondition<
N extends
Number &
Comparable<? super
N>>
-
public static class NumberCondition.FloatValue
- extends
NumberCondition<
Float>
A subclass of NumberCondition to be used to test for float
values Clients can either use the default implementation supplied or have
their own.
Fields inherited from class org.eclipse.emf.query.conditions.numbers.
NumberCondition
|
BETWEEN,
EQUAL_TO,
GREATER_THAN,
GREATER_THAN_OR_EQUAL_TO,
LESS_THAN,
LESS_THAN_OR_EQUAL_TO,
lowerBound,
lowerInclusive,
NOT_EQUAL_TO,
operator,
upperBound,
upperInclusive
|
Constructor Summary
|
NumberCondition.FloatValue
(
Float number)
A simple constructor, it takes only one Float argument which means in
its evaluation the values passed to it must be equal to this Float
value passed. |
NumberCondition.FloatValue
(
Float lowerBound,
Float upperBound)
A constructor, it takes two Float arguments, a
lowerBound and an upperBound, which means in its evaluation the
values passed to it must be equal to any these two Float
values passed or fall in between. |
NumberCondition.FloatValue
(
Float lowerBound,
Float upperBound,
NumberAdapter.FloatAdapter adapter)
A constructor, besides the NumberAdapter.FloatAdapter ,
it also it takes two Float arguments, a lowerBound and
an upperBound, which means in its evaluation the values passed to it
must be equal to any these two Float values passed or
fall in between. |
NumberCondition.FloatValue
(
Float number,
NumberAdapter.FloatAdapter adapter)
A simple constructor, it takes only one Float argument
which means in its evaluation the values passed to it must be equal
to this Float value passed. |
Method Summary
|
boolean
|
isSatisfied
(
Object object)
This operation is the evaluation operation of this Condition
in regard to the argument Object. |
Methods inherited from class org.eclipse.emf.query.conditions.numbers.
NumberCondition
|
between,
between,
equals,
greaterThan,
greaterThanOrEquals,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
isSatisfied,
lessThan,
lessThanOrEquals,
notEquals
|
Methods inherited from class java.lang.
Object
|
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
|
NumberCondition.FloatValue
public NumberCondition.FloatValue(
Float number)
- A simple constructor, it takes only one Float argument which means in
its evaluation the values passed to it must be equal to this Float
value passed. It defaults to using the
NumberAdapter.FloatAdapter.DEFAULT for adapting the objects being
evaluated to a float value.
-
Parameters:
-
number - the Float object to use for equality
testing
NumberCondition.FloatValue
public NumberCondition.FloatValue(
Float number,
NumberAdapter.FloatAdapter adapter)
- A simple constructor, it takes only one
Float argument
which means in its evaluation the values passed to it must be equal
to this Float value passed.
-
Parameters:
-
number - the Float object to use for equality
testing -
adapter - the NumberAdapter.FloatAdapter to use to
extract float values from objects being evaluated.
NumberCondition.FloatValue
public NumberCondition.FloatValue(
Float lowerBound,
Float upperBound)
- A constructor, it takes two
Float arguments, a
lowerBound and an upperBound, which means in its evaluation the
values passed to it must be equal to any these two Float
values passed or fall in between. It defaults to using the
NumberAdapter.FloatAdapter.DEFAULT for adapting the objects being
evaluated to a float value.
-
Parameters:
-
lowerBound - the Float value representing the
lower-bound in range testing -
upperBound - the Float value representing the
upper-bound in range testing
NumberCondition.FloatValue
public NumberCondition.FloatValue(
Float lowerBound,
Float upperBound,
NumberAdapter.FloatAdapter adapter)
- A constructor, besides the
NumberAdapter.FloatAdapter ,
it also it takes two Float arguments, a lowerBound and
an upperBound, which means in its evaluation the values passed to it
must be equal to any these two Float values passed or
fall in between.
-
Parameters:
-
lowerBound - the Float value representing the
lower-bound in range testing -
upperBound - the Float value representing the
upper-bound in range testing -
adapter - the NumberAdapter.FloatAdapter to use to
extract float values from objects being evaluated.
isSatisfied
public boolean isSatisfied(
Object object)
-
Description copied from class:
Condition
- This operation is the evaluation operation of this
Condition
in regard to the argument Object. In other words, the operation answers
whether the argument Object satisfied this Condition or
not.
-
-
Overrides:
-
isSatisfied
in class
NumberCondition<
Float>
-
-
Parameters:
-
object - an Object to check if it satisfies this Condition
-
Returns:
-
true if the argument Object satisfies this
Condition ,false otherwise.
|
|