| |
|
| java.lang.Object org.openrdf.query.impl.ListBindingSet
ListBindingSet | public class ListBindingSet implements BindingSet(Code) | | A List-based implementation of the
BindingSet interface.
author: Arjohn Kampman |
Constructor Summary | |
public | ListBindingSet(List<String> names, Value... values) Creates a new List-based BindingSet containing the supplied bindings.
The supplied list of binding names is assumed to be constant;
care should be taken that the contents of this list doesn't change after
supplying it to this solution. | public | ListBindingSet(List<String> bindingNames, List<? extends Value> values) Creates a new List-based BindingSet containing the supplied bindings.
The supplied lists are assumed to be constant; care should be
taken that the contents of these lists don't change after supplying them
to this solution. |
ListBindingSet | public ListBindingSet(List<String> names, Value... values)(Code) | | Creates a new List-based BindingSet containing the supplied bindings.
The supplied list of binding names is assumed to be constant;
care should be taken that the contents of this list doesn't change after
supplying it to this solution. The number of supplied values must be equal
to the number of the binding names.
Parameters: names - The binding names. Parameters: values - The binding values. |
ListBindingSet | public ListBindingSet(List<String> bindingNames, List<? extends Value> values)(Code) | | Creates a new List-based BindingSet containing the supplied bindings.
The supplied lists are assumed to be constant; care should be
taken that the contents of these lists don't change after supplying them
to this solution. The number of supplied values must be equal to the
number of the binding names.
Parameters: bindingNames - The binding names. Parameters: values - The binding values. |
hasBinding | public boolean hasBinding(String bindingName)(Code) | | |
hashCode | public int hashCode()(Code) | | |
|
|
|