| |
|
| java.lang.Object org.openrdf.query.impl.MapBindingSet
Constructor Summary | |
public | MapBindingSet() | public | MapBindingSet(int capacity) Creates a new Map-based BindingSet with the specified initial capacity. |
MapBindingSet | public MapBindingSet()(Code) | | |
MapBindingSet | public MapBindingSet(int capacity)(Code) | | Creates a new Map-based BindingSet with the specified initial capacity.
Bindings can be added to this solution using the
MapBindingSet.addBinding methods.
Parameters: capacity - The initial capacity of the created BindingSet object. |
addBinding | public void addBinding(String name, Value value)(Code) | | Adds a binding to the solution.
Parameters: name - The binding's name. Parameters: value - The binding's value. |
addBinding | public void addBinding(Binding binding)(Code) | | Adds a binding to the solution.
Parameters: binding - The binding to add to the solution. |
hasBinding | public boolean hasBinding(String bindingName)(Code) | | |
hashCode | public int hashCode()(Code) | | |
removeBinding | public void removeBinding(String name)(Code) | | Removes a binding from the solution.
Parameters: name - The binding's name. |
|
|
|