com.ryanharter.auto.value.gson.AutoValueGsonBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auto-value-gson-runtime Show documentation
Show all versions of auto-value-gson-runtime Show documentation
AutoValue extension that creates a Gson TypeAdapterFactory
package com.ryanharter.auto.value.gson;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.CLASS;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* If present, indicates that the annotated method should be used for retrieving an instance of the
* AutoValue.Builder. Only necessary if there is more than one builder method.
*/
@Retention(CLASS)
@Target(METHOD)
public @interface AutoValueGsonBuilder {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy