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

org.boon.json.annotations.SerializedName Maven / Gradle / Ivy

Go to download

Simple opinionated Java for the novice to expert level Java Programmer. Low Ceremony. High Productivity. A real boon to Java to developers!

There is a newer version: 0.34
Show newest version
package org.boon.json.annotations;


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

@Target({ ElementType.METHOD, ElementType.FIELD })
@Retention( RetentionPolicy.RUNTIME)
public @interface SerializedName {
        String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy