All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bridje.el.ElAdvanceConverter Maven / Gradle / Ivy


package org.bridje.el;

/**
 * This interface defines an expression language type converter that can be use
 * in the ElEnviroment to cast the results of the evaluated expressions. To
 * provide a new converter a component that implements this interface must be
 * created.
 */
public interface ElAdvanceConverter
{
    /**
     * Determines when ever this convertor can covert the specified value to the
     * specified class.
     *
     * @param  The type of the value be converted.
     * @param  The type of the result.
     * @param from The class of the value be converted.
     * @param to The class of the result.
     * @return true if this converter can convert the given value to the given
     * class.
     */
    public  boolean canConvert(Class from, Class to);

    /**
     * Performs the conversion of the given value to the given type.
     *
     * @param  The type of the result.
     * @param value The value to convert.
     * @param type The type to convert to.
     * @return The converted value.
     */
    public  T convert(Object value, Class type);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy