All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.kvisco.xsl.ExprResult

public interface ExprResult
An interface the represents the result of evaluating an Expr


Variable Index

 o BOOLEAN
 o NODE_SET
 o NUMBER
 o STRING
 o TREE_FRAGMENT

Method Index

 o booleanValue()
Returns the value of this ExprResult as a boolean
 o equals(ExprResult)
Returns true if the given ExprResult is of the same type of this ExprResult, and their values are equal.
 o getResultType()
Returns the type of result this ExprResult represents
 o numberValue()
Returns the value of this ExprResult as a double
 o toJavaObject()
Returns the Java Object this ExprResult represents
 o toString()
Returns the value of this ExprResult as a String

Variables

 o BOOLEAN
 public static final short BOOLEAN
 o NUMBER
 public static final short NUMBER
 o NODE_SET
 public static final short NODE_SET
 o STRING
 public static final short STRING
 o TREE_FRAGMENT
 public static final short TREE_FRAGMENT

Methods

 o booleanValue
 public abstract boolean booleanValue()
Returns the value of this ExprResult as a boolean

Returns:
the value of this ExprResult as a boolean
 o getResultType
 public abstract short getResultType()
Returns the type of result this ExprResult represents

Returns:
the type of result this ExprResult represents
 o equals
 public abstract boolean equals(ExprResult exprResult)
Returns true if the given ExprResult is of the same type of this ExprResult, and their values are equal.

Returns:
true if the given ExprResult is of the same type of this ExprResult, and their values are equal. otherwise false.
 o numberValue
 public abstract double numberValue()
Returns the value of this ExprResult as a double

Returns:
the value of this ExprResult as a double
 o toJavaObject
 public abstract Object toJavaObject()
Returns the Java Object this ExprResult represents

Returns:
the Java Object this ExprResult represents
 o toString
 public abstract String toString()
Returns the value of this ExprResult as a String

Returns:
the value of this ExprResult as a String

All Packages  Class Hierarchy  This Package  Previous  Next  Index