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

org.zodiac.sdk.json.annotation.JSONNodeAttr Maven / Gradle / Ivy

There is a newer version: 1.5.17
Show newest version
package org.zodiac.sdk.json.annotation;

import java.lang.annotation.*;

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface JSONNodeAttr {
    String name() default "";
    String format() default "";
    boolean serialize() default true;
    boolean deserialize() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy