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

com.silentgo.json.annotation.JSONIgnore Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package com.silentgo.json.annotation;

import java.lang.annotation.*;

/**
 * Project : json
 * Package : com.silentgo.json.annotation
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 2017/1/6. */ @Documented @Inherited @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD}) public @interface JSONIgnore { boolean serialize() default true; boolean deserialize() default true; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy