Sha256: 5a9f015623b71412e91bb2eba48fa90ec42e70481bcbb3a670027f97337c3091
Contents?: true
Size: 566 Bytes
Versions: 164
Compression:
Stored size: 566 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 constructors and factory * methods as one to use for instantiating new instances of the associated * class. */ @Target({ElementType.METHOD, ElementType.CONSTRUCTOR}) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonCreator { // no values, since there's no property }
Version data entries
164 entries across 164 versions & 2 rubygems