Sha256: 39a4841ecdac93cdb1cf14e487dd8165a2115ce28eb2cd91ae13a1a401e28484
Contents?: true
Size: 571 Bytes
Versions: 164
Compression:
Stored size: 571 Bytes
Contents
package sh.calaba.org.codehaus.jackson.map.util; import java.lang.annotation.Annotation; /** * Interface that defines interface for collection of annotations. *<p> * Standard mutable implementation is {@link sh.calaba.org.codehaus.jackson.map.introspect.AnnotationMap} * * @since 1.7 */ public interface Annotations { /** * Main access method used to find value for given annotation. */ public <A extends Annotation> A get(Class<A> cls); /** * Returns number of annotation entries in this collection. */ public int size(); }
Version data entries
164 entries across 164 versions & 2 rubygems