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

com.ppiech.auto.value.jackson.annotation.OnJsonParseComplete Maven / Gradle / Ivy

package com.ppiech.auto.value.jackson.annotation;

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

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.CLASS;

/**
 * Declare that a method should be called once a class has been parsed from JSON.
 * 

 * {@literal @}OnJsonParseComplete
 * public void postParseMethod() {
 *     ...
 * }
 * 
*/ @Target(METHOD) @Retention(CLASS) public @interface OnJsonParseComplete { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy