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

io.gsonfire.annotations.ExcludeByValue Maven / Gradle / Ivy

Go to download

A java library that adds some very useful features to Gson, like Date serializing to unix timestamp or RFC3339, method (getter) serialization, pre and post processors and many more. Check out the documentation to learn how to use it!

There is a newer version: 1.9.0
Show newest version
package io.gsonfire.annotations;

import io.gsonfire.gson.ExclusionByValueStrategy;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface ExcludeByValue {
    Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy