![JAR search and dependency download from the Maven repository](/logo.png)
org.kairosdb.client.serializer.ListMultiMapSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Java client for pushing and querying data to/from KairosDB
package org.kairosdb.client.serializer;
import com.google.common.collect.ListMultimap;
import com.google.gson.JsonElement;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import java.lang.reflect.Type;
public class ListMultiMapSerializer implements JsonSerializer
{
@Override
public JsonElement serialize(ListMultimap src, Type typeOfSrc, JsonSerializationContext context)
{
return context.serialize(src.asMap());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy