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

com.mountain.framework.utils.Constant Maven / Gradle / Ivy

The newest version!
package com.mountain.framework.utils;

import com.google.gson.FieldNamingPolicy;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

public interface Constant {
    Gson GSON = new GsonBuilder()
        .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES)
        .create();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy