de.fuberlin.wiwiss.ng4j.triql.legacy
Interface Value

All Superinterfaces:
com.hp.hpl.jena.rdql.Printable
All Known Subinterfaces:
Settable
All Known Implementing Classes:
ParsedLiteral, Q_BooleanLiteral, Q_NumericLiteral, Q_QName, Q_QuotedURI, Q_TextLiteral, Q_URI, Q_URL, WorkingVar

public interface Value
extends com.hp.hpl.jena.rdql.Printable


Method Summary
 String asQuotedString()
           
 String asUnquotedString()
           
 boolean getBoolean()
           
 double getDouble()
           
 long getInt()
           
 Literal getRDFLiteral()
           
 Resource getRDFResource()
           
 String getString()
           
 String getURI()
           
 boolean isBoolean()
           
 boolean isDouble()
           
 boolean isInt()
           
 boolean isNumber()
           
 boolean isRDFLiteral()
           
 boolean isRDFResource()
           
 boolean isString()
           
 boolean isURI()
           
 String toString()
           
 String valueString()
           
 
Methods inherited from interface com.hp.hpl.jena.rdql.Printable
asInfixString, asPrefixString, print
 

Method Detail

isNumber

boolean isNumber()

isInt

boolean isInt()

isDouble

boolean isDouble()

isBoolean

boolean isBoolean()

isString

boolean isString()

isURI

boolean isURI()

isRDFLiteral

boolean isRDFLiteral()

isRDFResource

boolean isRDFResource()

getInt

long getInt()

getDouble

double getDouble()

getBoolean

boolean getBoolean()

getString

String getString()

getURI

String getURI()

getRDFLiteral

Literal getRDFLiteral()

getRDFResource

Resource getRDFResource()

asQuotedString

String asQuotedString()

asUnquotedString

String asUnquotedString()

valueString

String valueString()

toString

String toString()
Overrides:
toString in class Object