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

liqp.filters.First Maven / Gradle / Ivy

package liqp.filters;

class First extends Filter {

    /*
     * first(array)
     *
     * Get the first element of the passed in array
     */
    @Override
    public Object apply(Object value, Object... params) {

        Object[] array = super.asArray(value);

        return array.length == 0 ? null : super.asString(array[0]);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy