|
org.eclipse.emf.query.conditions
Class DataTypeCondition<T>
java.lang.Object
org.eclipse.emf.query.conditions.Condition
org.eclipse.emf.query.conditions.DataTypeCondition<T>
-
-
Type Parameters:
-
T - the data type, of which values the condition tests
-
Direct Known Subclasses:
-
BooleanCondition,
NumberCondition,
StringCondition
-
public class DataTypeCondition<T>
- extends
Condition
A condition on data-type (primitive) values.
-
Since:
- 1.2
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 java.lang.
Object
|
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
|
adapter
protected final
IDataTypeAdapter<? extends
T> adapter
value
protected final
T value
DataTypeCondition
public DataTypeCondition(
T value,
IDataTypeAdapter<? extends
T> adapter)
DataTypeCondition
public DataTypeCondition(
T value)
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.
-
-
Specified by:
-
isSatisfied
in class
Condition
-
-
Parameters:
-
object - an Object to check if it satisfies this Condition
-
Returns:
-
true if the argument Object satisfies this
Condition ,false otherwise.
|
|