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

com.lyncode.jtwig.functions.json.mapper.GsonJsonMapper Maven / Gradle / Ivy

The newest version!
package com.lyncode.jtwig.functions.json.mapper;

import com.google.common.base.Function;
import com.google.gson.Gson;

import javax.annotation.Nullable;

public class GsonJsonMapper implements Function {
    private static Gson gson = new Gson();

    @Nullable
    @Override
    public String apply(@Nullable Object input) {
        return gson.toJson(input);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy