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

com.github.moleksyuk.psl.commons.guava.functions.string.ToLowerCase Maven / Gradle / Ivy

package com.github.moleksyuk.psl.commons.guava.functions.string;

import com.google.common.base.Function;

/**
 * Function that transforms each item of {@code Iterable}
 * into a lower case using {@link String#toLowerCase()}.
 *
 * @author Mykhailo Oleksiuk
 */
public final class ToLowerCase implements Function {

    @Override
    public String apply(String input) {
        return input == null ? null : input.toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy