Class QueryList<T>
java.lang.Object
org.openehealth.ipf.commons.ihe.xds.core.requests.query.QueryList<T>
- Type Parameters:
T
- The type contained in the list.
- All Implemented Interfaces:
Serializable
Represents a list of query parameters.
The list allows AND and OR semantics via two levels of lists.
The inner lists of parameters have OR semantics. The outer list
contains the inner lists and uses AND semantics. E.g. the query
list (a, b), (c, d)
contains two inner lists and the
parameters are evaluated (a OR b) AND (c OR d).
- Author:
- Jens Riemschneider
- See Also:
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
QueryList
public QueryList()Constructs a query list. -
QueryList
Constructs a query list using another list.This constructor does not clone the objects in the list.
- Parameters:
other
- the other list.
-
QueryList
Constructs a query list.- Parameters:
singleElement
- the only initial element in the list.
-
-
Method Details