JavaServer Pages(TM) Standard Tag Library 1.2 API 1.0.3.Final

org.apache.taglibs.standard.lang.jstl
Class Coercions

java.lang.Object
  extended by org.apache.taglibs.standard.lang.jstl.Coercions

public class Coercions
extends Object

This class contains the logic for coercing data types before operators are applied to them.

The following is the list of rules applied for various type conversions.

Version:
$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: kchung $
Author:
Nathan Abramson - Art Technology Group

Constructor Summary
Coercions()
           
 
Method Summary
static Object applyArithmeticOperator(Object pLeft, Object pRight, ArithmeticOperator pOperator, Logger pLogger)
          Performs all of the necessary type conversions, then calls on the appropriate operator.
static Object applyEqualityOperator(Object pLeft, Object pRight, EqualityOperator pOperator, Logger pLogger)
          Performs all of the necessary type conversions, then calls on the appropriate operator.
static Object applyRelationalOperator(Object pLeft, Object pRight, RelationalOperator pOperator, Logger pLogger)
          Performs all of the necessary type conversions, then calls on the appropriate operator.
static Object coerce(Object pValue, Class pClass, Logger pLogger)
          Coerces the given value to the specified class.
static Boolean coerceToBoolean(Object pValue, Logger pLogger)
          Coerces a value to a Boolean
static Character coerceToCharacter(Object pValue, Logger pLogger)
          Coerces a value to a Character
static Integer coerceToInteger(Object pValue, Logger pLogger)
          Coerces a value to an Integer, returning null if the coercion isn't possible.
static Object coerceToObject(Object pValue, Class pClass, Logger pLogger)
          Coerces a value to the specified Class that is not covered by any of the above cases
static Number coerceToPrimitiveNumber(Object pValue, Class pClass, Logger pLogger)
          Coerces a value to the given primitive number class
static String coerceToString(Object pValue, Logger pLogger)
          Coerces the specified value to a String
static boolean isFloatingPointString(Object pObject)
          Returns true if the given string might contain a floating point number - i.e., it contains ".", "e", or "E"
static boolean isFloatingPointType(Class pClass)
          Returns true if the given class is of a floating point type
static boolean isFloatingPointType(Object pObject)
          Returns true if the given Object is of a floating point type
static boolean isIntegerType(Class pClass)
          Returns true if the given class is of an integer type
static boolean isIntegerType(Object pObject)
          Returns true if the given Object is of an integer type
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Coercions

public Coercions()
Method Detail

coerce

public static Object coerce(Object pValue,
                            Class pClass,
                            Logger pLogger)
                     throws ELException
Coerces the given value to the specified class.

Throws:
ELException

coerceToString

public static String coerceToString(Object pValue,
                                    Logger pLogger)
                             throws ELException
Coerces the specified value to a String

Throws:
ELException

coerceToPrimitiveNumber

public static Number coerceToPrimitiveNumber(Object pValue,
                                             Class pClass,
                                             Logger pLogger)
                                      throws ELException
Coerces a value to the given primitive number class

Throws:
ELException

coerceToInteger

public static Integer coerceToInteger(Object pValue,
                                      Logger pLogger)
                               throws ELException
Coerces a value to an Integer, returning null if the coercion isn't possible.

Throws:
ELException

coerceToCharacter

public static Character coerceToCharacter(Object pValue,
                                          Logger pLogger)
                                   throws ELException
Coerces a value to a Character

Throws:
ELException

coerceToBoolean

public static Boolean coerceToBoolean(Object pValue,
                                      Logger pLogger)
                               throws ELException
Coerces a value to a Boolean

Throws:
ELException

coerceToObject

public static Object coerceToObject(Object pValue,
                                    Class pClass,
                                    Logger pLogger)
                             throws ELException
Coerces a value to the specified Class that is not covered by any of the above cases

Throws:
ELException

applyArithmeticOperator

public static Object applyArithmeticOperator(Object pLeft,
                                             Object pRight,
                                             ArithmeticOperator pOperator,
                                             Logger pLogger)
                                      throws ELException
Performs all of the necessary type conversions, then calls on the appropriate operator.

Throws:
ELException

applyRelationalOperator

public static Object applyRelationalOperator(Object pLeft,
                                             Object pRight,
                                             RelationalOperator pOperator,
                                             Logger pLogger)
                                      throws ELException
Performs all of the necessary type conversions, then calls on the appropriate operator.

Throws:
ELException

applyEqualityOperator

public static Object applyEqualityOperator(Object pLeft,
                                           Object pRight,
                                           EqualityOperator pOperator,
                                           Logger pLogger)
                                    throws ELException
Performs all of the necessary type conversions, then calls on the appropriate operator.

Throws:
ELException

isFloatingPointType

public static boolean isFloatingPointType(Object pObject)
Returns true if the given Object is of a floating point type


isFloatingPointType

public static boolean isFloatingPointType(Class pClass)
Returns true if the given class is of a floating point type


isFloatingPointString

public static boolean isFloatingPointString(Object pObject)
Returns true if the given string might contain a floating point number - i.e., it contains ".", "e", or "E"


isIntegerType

public static boolean isIntegerType(Object pObject)
Returns true if the given Object is of an integer type


isIntegerType

public static boolean isIntegerType(Class pClass)
Returns true if the given class is of an integer type


JavaServer Pages(TM) Standard Tag Library 1.2 API 1.0.3.Final

Copyright © 2012 JBoss by Red Hat. All Rights Reserved.