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

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

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

import com.google.common.base.Function;

import java.util.Objects;

/**
 * Function that transforms each item of {@code Iterable}
 * to string using {@link Objects#toString(Object, String)}.
 *
 * @author Mykhailo Oleksiuk
 */
public final class ToString implements Function {

    @Override
    public String apply(F input) {
        return Objects.toString(input, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy