Uses of Enum Class
org.apache.juneau.commons.reflect.ElementFlag
Packages that use ElementFlag
Package
Description
Comprehensive reflection utilities for working with classes, methods, fields, constructors,
and annotations in a more convenient and type-safe way than the standard Java reflection APIs.
-
Uses of ElementFlag in org.apache.juneau.commons.reflect
Methods in org.apache.juneau.commons.reflect that return ElementFlagModifier and TypeMethodDescriptionstatic ElementFlagReturns the enum constant of this class with the specified name.static ElementFlag[]ElementFlag.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.juneau.commons.reflect with parameters of type ElementFlagModifier and TypeMethodDescriptionbooleanClassInfo.is(ElementFlag flag) Returnstrue if all specified flags are applicable to this class.booleanElementInfo.is(ElementFlag flag) Returnstrue if the specified flag is applicable to this element.booleanExecutableInfo.is(ElementFlag flag) Returnstrue if all specified flags are applicable to this method.booleanFieldInfo.is(ElementFlag flag) Returnstrue if all specified flags are applicable to this field.booleanMethodInfo.is(ElementFlag flag) booleanParameterInfo.is(ElementFlag flag) booleanElementInfo.isAll(ElementFlag... flags) Returnstrue if all specified flags are applicable to this element.booleanElementInfo.isAny(ElementFlag... flags) Returnstrue if any of the specified flags are applicable to this element.