void |
OQLQuery.create(java.lang.String query) |
Create an OQL query from the string parameter.
|
boolean |
DCollection.existsElement(java.lang.String predicate) |
Determines whether there is an element of the collection that evaluates to true
for the predicate,
not yet available in RasDaMan.
|
DCollection |
DCollection.query(java.lang.String predicate) |
Evaluate the boolean query predicate for each element of the collection and
return a new collection that contains each element that evaluated to true,
not yet available in RasDaMan.
|
java.util.Iterator |
DCollection.select(java.lang.String predicate) |
Access all of the elements of the collection that evaluate to true for the
provided query predicate,
not yet available in RasDaMan.
|
java.lang.Object |
DCollection.selectElement(java.lang.String predicate) |
Selects the single element of the collection for which the provided OQL query
predicate is true,
not yet available in RasDaMan.
|