|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AnnotationInclusion>
com.fasterxml.classmate.AnnotationInclusion
public enum AnnotationInclusion
Enumeration that defines different settings for handling behavior of individual annotations
Enum Constant Summary | |
---|---|
DONT_INCLUDE
Value that indicates that annotation is to be ignored, not included in resolved bean information. |
|
INCLUDE_AND_INHERIT
Value that indicates that annotation is to be included in results; and values from overridden members are also inherited if not overridden by members of subtypes. |
|
INCLUDE_BUT_DONT_INHERIT
Value that indicates that annotation is to be included in results, but only if directly associated with included member (or attached mix-in); will not inherit from supertypes. |
Method Summary | |
---|---|
static AnnotationInclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AnnotationInclusion[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AnnotationInclusion DONT_INCLUDE
public static final AnnotationInclusion INCLUDE_BUT_DONT_INHERIT
public static final AnnotationInclusion INCLUDE_AND_INHERIT
Method Detail |
---|
public static AnnotationInclusion[] values()
for (AnnotationInclusion c : AnnotationInclusion.values()) System.out.println(c);
public static AnnotationInclusion valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |