Class DefaultTypeRegistry
- java.lang.Object
-
- org.pentaho.reporting.libraries.formula.typing.DefaultTypeRegistry
-
- All Implemented Interfaces:
TypeRegistry
public class DefaultTypeRegistry extends java.lang.Object implements TypeRegistry
Creation-Date: 02.11.2006, 12:46:08- Author:
- Thomas Morgner
-
-
Constructor Summary
Constructors Constructor Description DefaultTypeRegistry()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TypeValuePairconvertTo(Type targetType, TypeValuePair valuePair)Checks whether the target type would accept the specified value object and value type.
This method is called for auto conversion of fonction parameters using the conversion type declared by the function metadata.ArrayCallbackconvertToArray(Type type, java.lang.Object value)java.util.DateconvertToDate(Type type1, java.lang.Object value)Converts the object of the given type into a date.java.lang.BooleanconvertToLogical(Type type1, java.lang.Object value)Converts the object of the given type into a boolean.java.lang.NumberconvertToNumber(Type sourceType, java.lang.Object value)converts the object of the given type into a number.NumberSequenceconvertToNumberSequence(Type type, java.lang.Object value, boolean strict)Converts the given (type,value) pair into a numeric sequence.SequenceconvertToSequence(Type type, java.lang.Object value)java.lang.StringconvertToText(Type type1, java.lang.Object value)(This conversion is used by the operator implementations.)ExtendedComparatorgetComparator(Type type1, Type type2)Returns an comparator for the given types.TypeguessTypeOfObject(java.lang.Object o)voidinitialize(org.pentaho.reporting.libraries.base.config.Configuration configuration, FormulaContext formulaContext)Deprecated.Use the single-argument function instead.voidinitialize(FormulaContext formulaContext)
-
-
-
Method Detail
-
getComparator
public ExtendedComparator getComparator(Type type1, Type type2)
Returns an comparator for the given types.- Specified by:
getComparatorin interfaceTypeRegistry- Parameters:
type1-type2-- Returns:
-
convertToNumber
public java.lang.Number convertToNumber(Type sourceType, java.lang.Object value) throws EvaluationException
converts the object of the given type into a number. If the object is not convertible, a NumberFormatException is thrown. If the given value is null or not parsable as number, return null.- Specified by:
convertToNumberin interfaceTypeRegistry- Parameters:
sourceType-value-- Returns:
- Throws:
java.lang.NumberFormatException- if the type cannot be represented as number.TypeConversionException- if the type cannot be represented as number.EvaluationException
-
initialize
public void initialize(org.pentaho.reporting.libraries.base.config.Configuration configuration, FormulaContext formulaContext)Deprecated.Use the single-argument function instead.- Parameters:
configuration-formulaContext-
-
initialize
public void initialize(FormulaContext formulaContext)
-
convertToText
public java.lang.String convertToText(Type type1, java.lang.Object value) throws EvaluationException
Description copied from interface:TypeRegistry(This conversion is used by the operator implementations.)- Specified by:
convertToTextin interfaceTypeRegistry- Returns:
- the value as string or an empty string, if the value given is null.
- Throws:
TypeConversionExceptionEvaluationException
-
convertToLogical
public java.lang.Boolean convertToLogical(Type type1, java.lang.Object value) throws TypeConversionException
Description copied from interface:TypeRegistryConverts the object of the given type into a boolean.- Specified by:
convertToLogicalin interfaceTypeRegistry- Returns:
- The value as Boolean or null.
- Throws:
TypeConversionException
-
convertToDate
public java.util.Date convertToDate(Type type1, java.lang.Object value) throws EvaluationException
Description copied from interface:TypeRegistryConverts the object of the given type into a date.- Specified by:
convertToDatein interfaceTypeRegistry- Returns:
- The value as Date or null.
- Throws:
EvaluationException
-
convertToArray
public ArrayCallback convertToArray(Type type, java.lang.Object value) throws EvaluationException
- Specified by:
convertToArrayin interfaceTypeRegistry- Throws:
EvaluationException
-
convertToSequence
public Sequence convertToSequence(Type type, java.lang.Object value) throws EvaluationException
- Specified by:
convertToSequencein interfaceTypeRegistry- Throws:
EvaluationException
-
convertToNumberSequence
public NumberSequence convertToNumberSequence(Type type, java.lang.Object value, boolean strict) throws EvaluationException
Description copied from interface:TypeRegistryConverts the given (type,value) pair into a numeric sequence. If the flag "strictTypeChecks" is set to true, the value sequence will only evaluate numeric values. A non-strict sequence will treat text as zero and logical values as 0 or 1.- Specified by:
convertToNumberSequencein interfaceTypeRegistry- Returns:
- Throws:
TypeConversionExceptionEvaluationException
-
convertTo
public TypeValuePair convertTo(Type targetType, TypeValuePair valuePair) throws EvaluationException
Checks whether the target type would accept the specified value object and value type.
This method is called for auto conversion of fonction parameters using the conversion type declared by the function metadata.- Specified by:
convertToin interfaceTypeRegistry- Parameters:
targetType-valuePair-- Throws:
EvaluationException
-
guessTypeOfObject
public Type guessTypeOfObject(java.lang.Object o)
- Specified by:
guessTypeOfObjectin interfaceTypeRegistry
-
-