站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss JBPM 3.1.3 API 英文版文档

Coercions (jbpm-3.1.3) - JBoss JBPM 3.1.3 API 英文版文档


org.jbpm.jpdl.el.impl
Class Coercions

java.lang.Object
  extended by org.jbpm.jpdl.el.impl.Coercions

public class Coercions
extends java.lang.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: tombaeyens $
Author:
Nathan Abramson - Art Technology Group

Constructor Summary
Coercions()
           
 
Method Summary
static java.lang.Object applyArithmeticOperator(java.lang.Object pLeft, java.lang.Object pRight, ArithmeticOperator pOperator, Logger pLogger)
          Performs all of the necessary type conversions, then calls on the appropriate operator.
static java.lang.Object applyEqualityOperator(java.lang.Object pLeft, java.lang.Object pRight, EqualityOperator pOperator, Logger pLogger)
          Performs all of the necessary type conversions, then calls on the appropriate operator.
static java.lang.Object applyRelationalOperator(java.lang.Object pLeft, java.lang.Object pRight, RelationalOperator pOperator, Logger pLogger)
          Performs all of the necessary type conversions, then calls on the appropriate operator.
static java.lang.Object coerce(java.lang.Object pValue, java.lang.Class pClass, Logger pLogger)
          Coerces the given value to the specified class.
static java.lang.Boolean coerceToBoolean(java.lang.Object pValue, Logger pLogger)
          Coerces a value to a Boolean
static java.lang.Character coerceToCharacter(java.lang.Object pValue, Logger pLogger)
          Coerces a value to a Character
static java.lang.Integer coerceToInteger(java.lang.Object pValue, Logger pLogger)
          Coerces a value to an Integer, returning null if the coercion isn't possible.
static java.lang.Object coerceToObject(java.lang.Object pValue, java.lang.Class pClass, Logger pLogger)
          Coerces a value to the specified Class that is not covered by any of the above cases
static java.lang.Number coerceToPrimitiveNumber(java.lang.Object pValue, java.lang.Class pClass, Logger pLogger)
          Coerces a value to the given primitive number class
static java.lang.String coerceToString(java.lang.Object pValue, Logger pLogger)
          Coerces the specified value to a String
static boolean isBigDecimal(java.lang.Object pObject)
          Returns true if the given object is BigDecimal.
static boolean isBigInteger(java.lang.Object pObject)
          Returns true if the given object is BigInteger.
static boolean isFloatingPointString(java.lang.Object pObject)
          Returns true if the given string might contain a floating point number - i.e., it contains "
static boolean isFloatingPointType(java.lang.Class pClass)
          Returns true if the given class is of a floating point type
static boolean isFloatingPointType(java.lang.Object pObject)
          Returns true if the given Object is of a floating point type
static boolean isIntegerType(java.lang.Class pClass)
          Returns true if the given class is of an integer type
static boolean isIntegerType(java.lang.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 java.lang.Object coerce(java.lang.Object pValue,
                                      java.lang.Class pClass,
                                      Logger pLogger)
                               throws ELException
Coerces the given value to the specified class.

Throws:
ELException

coerceToString

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

Throws:
ELException

coerceToPrimitiveNumber

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

Throws:
ELException

coerceToInteger

public static java.lang.Integer coerceToInteger(java.lang.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 java.lang.Character coerceToCharacter(java.lang.Object pValue,
                                                    Logger pLogger)
                                             throws ELException
Coerces a value to a Character

Throws:
ELException

coerceToBoolean

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

Throws:
ELException

coerceToObject

public static java.lang.Object coerceToObject(java.lang.Object pValue,
                                              java.lang.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 java.lang.Object applyArithmeticOperator(java.lang.Object pLeft,
                                                       java.lang.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 java.lang.Object applyRelationalOperator(java.lang.Object pLeft,
                                                       java.lang.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 java.lang.Object applyEqualityOperator(java.lang.Object pLeft,
                                                     java.lang.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(java.lang.Object pObject)
Returns true if the given Object is of a floating point type


isFloatingPointType

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


isFloatingPointString

public static boolean isFloatingPointString(java.lang.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(java.lang.Object pObject)
Returns true if the given Object is of an integer type


isIntegerType

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


isBigInteger

public static boolean isBigInteger(java.lang.Object pObject)
Returns true if the given object is BigInteger.

Parameters:
pObject - - Object to evaluate
Returns:
- true if the given object is BigInteger

isBigDecimal

public static boolean isBigDecimal(java.lang.Object pObject)
Returns true if the given object is BigDecimal.

Parameters:
pObject - - Object to evaluate
Returns:
- true if the given object is BigDecimal


Version : jbpm-3.1.3