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

liqp.filters.Upcase Maven / Gradle / Ivy

package liqp.filters;

class Upcase extends Filter {

    /*
     * upcase(input)
     *
     * convert a input string to UPCASE
     */
    @Override
    public Object apply(Object value, Object... params) {

        return super.asString(value).toUpperCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy