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

com.lyncode.jtwig.functions.parameters.convert.impl.ObjectToStringConverter Maven / Gradle / Ivy

The newest version!
package com.lyncode.jtwig.functions.parameters.convert.impl;

import com.google.common.base.Optional;
import com.lyncode.jtwig.functions.parameters.convert.api.ParameterConverter;

public class ObjectToStringConverter implements ParameterConverter {
    @Override
    public Optional convert(Object input) {
        return Optional.of(input.toString());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy