Package com.aquima.interactions.foundation.convert


package com.aquima.interactions.foundation.convert
The convert package provides a few utility classes to convert Objects of an unknown type to a Value object as defined in the foundation.

Usage examples

NumberValue value = Converter.parseNumber( "123.45" );
IValue list = Converter.parseCollection( new Object[] { "123", new Long(42) }, true );
  • Class
    Description
    This exception is used to indicate that an object could not be converted to a requested type.
    Abstract base class for objects that wish to implement the IConvertable interface.
    Utility class providing method to convert objects to IValue classes.
    Interface for objects that can be converted to primitive types.
    Interface for delegates for the converter.