Sha256: 4f32fad54b1458ccc89aa15f104954ab233f3c62e5c6868ea3c13e943d5045e8
Contents?: true
Size: 858 Bytes
Versions: 164
Compression:
Stored size: 858 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, * no-argument method or member field as something of a reverse of * {@link JsonAnySetter} method; basically being used like a * getter but such that contents of the returned Map (type <b>must</b> be * {@link java.util.Map}) are serialized as if they were actual properties * of the bean that contains method/field with this annotations. * As with {@link JsonAnySetter}, only one property should be annotated * with this annotation. * * @since 1.6 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonAnyGetter { }
Version data entries
164 entries across 164 versions & 2 rubygems