1 5 6 10 11 12 package com.hp.hpl.jena.rdql; 13 import com.hp.hpl.jena.graph.Node ; 14 import com.hp.hpl.jena.rdf.model.RDFNode ; 15 16 18 public class Value 19 { 20 public Value(Node n) { } 21 public Value(RDFNode n) { } 22 public String asQuotedString() { throw new RuntimeException ("Value / unimplemented ") ; } 23 public String asUnquotedString() { throw new RuntimeException ("Value / unimplemented ") ; } 24 public String asInfixString() { throw new RuntimeException ("Value / unimplemented ") ; } 25 public String valueString() { throw new RuntimeException ("Value / unimplemented ") ; } 27 public String toString() { throw new RuntimeException ("Value / unimplemented ") ; } 29 } 30 31 57 | Popular Tags |