Sha256: fd95cbb2f7eb569dc65852b35387fe860590aa91b8633e31490a0594026d4dba
Contents?: true
Size: 813 Bytes
Versions: 164
Compression:
Stored size: 813 Bytes
Contents
package sh.calaba.org.codehaus.jackson.annotate; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marker annotation that can be used to define a non-static, * single-argument method, to be used as a "fallback" handler * for all otherwise unrecognized properties found from Json content. * It is similar to {@link javax.xml.bind.annotation.XmlAnyElement} * in behavior; and can only be used to denote a single property * per type. *<p> * If used, all otherwise unmapped key-value pairs from Json Object * structs are added to the property (of type Map or bean). */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonAnySetter { }
Version data entries
164 entries across 164 versions & 2 rubygems