org.apache.clerezza.rdf.core.sparql
Interface SolutionMapping

All Superinterfaces:
Map<Variable,Resource>

public interface SolutionMapping
extends Map<Variable,Resource>

A set of mapping from variable names to solutions. a variable name has the form: ( PN_CHARS_U | [0-9] ) ( PN_CHARS_U | [0-9] | #x00B7 | [#x0300-#x036F] | [#x203F-#x2040] )* where PN_CHARS_U = [A-Z] | [a-z] | [#x00C0-#x00D6] | [#x00D8-#x00F6] | [#x00F8-#x02FF] | [#x0370-#x037D] | [#x037F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF] | '_'

Author:
rbn

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 Resource get(String name)
          Should be the equivalent to this: public Resource get(String name) { return get(new Variable(name)); }
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 

Method Detail

get

Resource get(String name)
Should be the equivalent to this: public Resource get(String name) { return get(new Variable(name)); }

Parameters:
name -
Returns:


Copyright © 2012 The Apache Software Foundation. All Rights Reserved.