net.sf.saxon.value
Class FloatValue

java.lang.Object
  extended by net.sf.saxon.value.Value
      extended by net.sf.saxon.value.AtomicValue
          extended by net.sf.saxon.value.NumericValue
              extended by net.sf.saxon.value.FloatValue
All Implemented Interfaces:
Serializable, Comparable, Expression, Item

public final class FloatValue
extends NumericValue

A numeric (single precision floating point) value

See Also:
Serialized Form

Constructor Summary
FloatValue(float value)
          Constructor supplying a float
 
Method Summary
 NumericValue arithmetic(int operator, NumericValue other)
          Evaluate a binary arithmetic operator.
 double asDouble()
          Get the numeric value as a double
 NumericValue ceiling()
          Implement the XPath ceiling() function
 int conversionPreference(Class required)
          Get conversion preference for this value to a Java class.
 AtomicValue convert(int requiredType)
          Convert to target data type
 Object convertToJava(Class target)
          Convert to Java object (for passing to external functions)
 void display(int level, NamePool pool)
          Diagnostic print of expression structure
 boolean effectiveBooleanValue(XPathContext context)
          Get the effective boolean value of the value
 NumericValue floor()
          Implement the XPath floor() function
 ItemType getItemType()
          Determine the data type of the expression
 String getStringValue()
          Get the value as a String
 float getValue()
          Get the value
 int hashCode()
          Get the hashCode.
 boolean isNaN()
          Test whether the value is the double/float value NaN
 boolean isWholeNumber()
          Determine whether the value is a whole number, that is, whether it compares equal to some integer
 NumericValue negate()
          Negate the value
 NumericValue round()
          Implement the XPath round() function
 NumericValue roundToHalfEven(int scale)
          Implement the XPath round-to-half-even() function
 
Methods inherited from class net.sf.saxon.value.NumericValue
asLong, compareTo, equals, promote, toString
 
Methods inherited from class net.sf.saxon.value.AtomicValue
convert, convert, evaluateAsString, evaluateItem, getCardinality, getComponent, getPrimitiveValue, getTypedValue, iterate
 
Methods inherited from class net.sf.saxon.value.Value
analyze, asItem, asValue, collapseWhitespace, getDependencies, getSpecialProperties, getSubExpressions, inverse, normalizeWhitespace, promote, simplify, stringToInteger, stringToNumber, trimWhitespace
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FloatValue

public FloatValue(float value)
Constructor supplying a float

Parameters:
value - the value of the float
Method Detail

getValue

public float getValue()
Get the value


asDouble

public double asDouble()
Description copied from class: NumericValue
Get the numeric value as a double

Overrides:
asDouble in class NumericValue
Returns:
A double representing this numeric value; NaN if it cannot be converted

hashCode

public int hashCode()
Get the hashCode. This must conform to the rules for other NumericValue hashcodes

Specified by:
hashCode in class NumericValue
Returns:
the hash code of the numeric value
See Also:
NumericValue.hashCode()

isNaN

public boolean isNaN()
Test whether the value is the double/float value NaN

Overrides:
isNaN in class NumericValue

effectiveBooleanValue

public boolean effectiveBooleanValue(XPathContext context)
Description copied from class: AtomicValue
Get the effective boolean value of the value

Specified by:
effectiveBooleanValue in interface Expression
Overrides:
effectiveBooleanValue in class AtomicValue
Parameters:
context - the evaluation context (not used in this implementation)
Returns:
true, unless the value is boolean false, numeric zero, or zero-length string

convert

public AtomicValue convert(int requiredType)
                    throws XPathException
Convert to target data type

Specified by:
convert in class AtomicValue
Parameters:
requiredType - an integer identifying the required atomic type
Returns:
an AtomicValue, a value of the required type
Throws:
XPathException - if the conversion is not possible

getStringValue

public String getStringValue()
Get the value as a String

Returns:
a String representation of the value

getItemType

public ItemType getItemType()
Determine the data type of the expression

Returns:
Type.DOUBLE

negate

public NumericValue negate()
Negate the value

Specified by:
negate in class NumericValue
Returns:
a value, of the same type as the original, with its sign inverted

floor

public NumericValue floor()
Implement the XPath floor() function

Specified by:
floor in class NumericValue
Returns:
a value, of the same type as that supplied, rounded towards minus infinity

ceiling

public NumericValue ceiling()
Implement the XPath ceiling() function

Specified by:
ceiling in class NumericValue
Returns:
a value, of the same type as that supplied, rounded towards plus infinity

round

public NumericValue round()
Implement the XPath round() function

Specified by:
round in class NumericValue
Returns:
a value, of the same type as that supplied, rounded towards the nearest whole number (0.5 rounded up)

roundToHalfEven

public NumericValue roundToHalfEven(int scale)
Implement the XPath round-to-half-even() function

Specified by:
roundToHalfEven in class NumericValue
Parameters:
scale - the decimal position for rounding: e.g. 2 rounds to a multiple of 0.01, while -2 rounds to a multiple of 100
Returns:
a value, of the same type as the original, rounded towards the nearest multiple of 10**(-scale), with rounding towards the nearest even number if two values are equally near

isWholeNumber

public boolean isWholeNumber()
Determine whether the value is a whole number, that is, whether it compares equal to some integer

Specified by:
isWholeNumber in class NumericValue
Returns:
true if the value is a whole number

arithmetic

public NumericValue arithmetic(int operator,
                               NumericValue other)
                        throws XPathException
Evaluate a binary arithmetic operator.

Specified by:
arithmetic in class NumericValue
Parameters:
operator - the binary arithmetic operation to be performed. Uses the constants defined in the Tokenizer class
other - the other operand
Returns:
the result of the arithmetic operation
Throws:
XPathException - if an arithmetic error occurs
See Also:
Tokenizer

conversionPreference

public int conversionPreference(Class required)
Get conversion preference for this value to a Java class. A low result indicates higher preference.

Overrides:
conversionPreference in class AtomicValue

convertToJava

public Object convertToJava(Class target)
                     throws XPathException
Convert to Java object (for passing to external functions)

Overrides:
convertToJava in class AtomicValue
Parameters:
target - The class required by the external function
Returns:
an object of the target class
Throws:
XPathException

display

public void display(int level,
                    NamePool pool)
Diagnostic print of expression structure

Parameters:
level - indentation level for this expression