com.softwareag.xtools.quip.xqueryAPI
Interface QueryResult

All Known Implementing Classes:
QuiPQueryResult, QMachineQueryResult

public interface QueryResult

Represents a Query result.

Version:
1.0
Author:
Patrick.Lehti@softwareag.com

Method Summary
 BigDecimal getBigDecimal()
          Returns a BigDecimal result.
 boolean getBoolean()
          Returns a boolean result.
 org.w3c.dom.Document getDocument()
          Returns a Document result.
 double getDouble()
          Returns a double result.
 float getFloat()
          Returns a float result.
 int getInt()
          Returns an int result.
 long getLong()
          Returns a long result.
 org.w3c.dom.Node getNode()
          Returns a Node result.
 org.w3c.dom.NodeList getNodeList()
          Returns a NodeList result.
 Object getObject()
          Returns a Object result.
 String getRawString()
          Returns the raw result data.
 String getString()
          Returns a String result.
 

Method Detail

getDocument

public org.w3c.dom.Document getDocument()
                                 throws XQueryException
Returns a Document result.

getString

public String getString()
                 throws XQueryException
Returns a String result.

getLong

public long getLong()
             throws XQueryException
Returns a long result.

getInt

public int getInt()
           throws XQueryException
Returns an int result.

getBoolean

public boolean getBoolean()
                   throws XQueryException
Returns a boolean result.

getFloat

public float getFloat()
               throws XQueryException
Returns a float result.

getDouble

public double getDouble()
                 throws XQueryException
Returns a double result.

getBigDecimal

public BigDecimal getBigDecimal()
                         throws XQueryException
Returns a BigDecimal result.

getNode

public org.w3c.dom.Node getNode()
                         throws XQueryException
Returns a Node result.

getNodeList

public org.w3c.dom.NodeList getNodeList()
                                 throws XQueryException
Returns a NodeList result.

getObject

public Object getObject()
                 throws XQueryException
Returns a Object result.

getRawString

public String getRawString()
Returns the raw result data.


Copyright (c) 2001 Software AG. All Rights Reserved.