public class OQLQueryPredicate extends BOPredicate
BOPredicate
subclass where the conditions are generated by parsing a given OQL query.
FIXME! TT 2023-03-08: Note that a lot of MyTISM OQL constructs are not yet supported.
FIXME! TT 2023-03-08: It might be nice if the parameter values need not be given upon construction but could be
dynamically set and changed later.Constructor and Description |
---|
OQLQueryPredicate(OQLQuery _oqlQuery,
java.lang.Object[] _parameters) |
OQLQueryPredicate(SchemaI _schema,
QueryExpressionNode _queryExpressionNode,
java.lang.Object[] _parameters) |
OQLQueryPredicate(SchemaI _schema,
java.lang.String _query,
java.lang.Object[] _parameters) |
Modifier and Type | Method and Description |
---|---|
static EntityI |
determineEntity(SchemaI _schema,
QueryExpressionNode _queryExpressionNode) |
java.util.List<BOI> |
filterBOs(java.util.Collection<BOI> bos)
Filters BOs from the given collection by filtering them according to this predicate's
test() method. |
java.util.List<BOI> |
filterBOs(java.util.Collection<BOI> bos,
int limit) |
java.util.List<BOI> |
filterBOs(java.util.Iterator<BOI> bosIt) |
java.util.List<BOI> |
filterBOs(java.util.Iterator<BOI> bosIt,
int limit) |
java.lang.String |
getAlias() |
QueryExpressionNode |
getQueryExpressionNode() |
SchemaI |
getSchema() |
boolean |
test(BOI bo) |
getEntity, setEntity, setSchema
public OQLQueryPredicate(SchemaI _schema, java.lang.String _query, java.lang.Object[] _parameters) throws OQLException, UnsupportedQueryException
public OQLQueryPredicate(OQLQuery _oqlQuery, java.lang.Object[] _parameters) throws OQLException, UnsupportedQueryException
public OQLQueryPredicate(SchemaI _schema, QueryExpressionNode _queryExpressionNode, java.lang.Object[] _parameters) throws OQLException, UnsupportedQueryException
public static EntityI determineEntity(SchemaI _schema, QueryExpressionNode _queryExpressionNode)
public QueryExpressionNode getQueryExpressionNode()
public SchemaI getSchema()
getSchema
in class BOPredicate
public java.lang.String getAlias()
public boolean test(BOI bo)
test
in interface java.util.function.Predicate<BOI>
test
in class BOPredicate
public java.util.List<BOI> filterBOs(java.util.Collection<BOI> bos)
test()
method.bos
- the collection of BOs to filterlimit
- a possible size limit for the returned list; if > 0 then at most the first [limit] matching entries
- in the order as returned by the given collection's iterator - will be included in the resulttest()
methodCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.