Uses of Enum Class
java.lang.reflect.AccessFlag
Packages that use AccessFlag
Package
Description
Provides classes that are fundamental to the design of the Java
programming language.
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing classfile attributes for the
java.lang.classfile library.Classes to support module descriptors and creating configurations of modules
by means of resolution and service binding.
Provides classes and interfaces for obtaining reflective information about
classes and objects.
-
Uses of AccessFlag in java.lang
Methods in java.lang that return types with arguments of type AccessFlagModifier and TypeMethodDescriptionClass.accessFlags()Returns an unmodifiable set of the access flags for this class, possibly empty. -
Uses of AccessFlag in java.lang.classfile
Methods in java.lang.classfile that return types with arguments of type AccessFlagMethods in java.lang.classfile with parameters of type AccessFlagModifier and TypeMethodDescriptionbooleanAccessFlags.has(AccessFlag flag) Returns whether the specified flag is present.default ClassBuilderClassBuilder.withFlags(AccessFlag... flags) Sets the classfile access flags.default FieldBuilderFieldBuilder.withFlags(AccessFlag... flags) Sets the field access flags.default MethodBuilderMethodBuilder.withFlags(AccessFlag... flags) Sets the method access flags. -
Uses of AccessFlag in java.lang.classfile.attribute
Methods in java.lang.classfile.attribute that return types with arguments of type AccessFlagModifier and TypeMethodDescriptiondefault Set<AccessFlag> ModuleExportInfo.exportsFlags()Returns the flags associated with this export declaration, as a set of flag values.default Set<AccessFlag> InnerClassInfo.flags()Returns a set of flag enums denoting access permissions and properties of the inner class.default Set<AccessFlag> MethodParameterInfo.flags()Parameter access flags for this parameter.default Set<AccessFlag> ModuleAttribute.moduleFlags()Returns the the module flags of the module, as a set of enum constants.default Set<AccessFlag> ModuleOpenInfo.opensFlags()Returns the access flags.default Set<AccessFlag> ModuleRequireInfo.requiresFlags()Returns the access flags.Methods in java.lang.classfile.attribute with parameters of type AccessFlagModifier and TypeMethodDescriptiondefault booleanInnerClassInfo.has(AccessFlag flag) Returns whether a specific access flag is set.default booleanMethodParameterInfo.has(AccessFlag flag) Returns whether the method parameter has a specific flag set.default booleanModuleAttribute.has(AccessFlag flag) Tests presence of module flagdefault booleanModuleExportInfo.has(AccessFlag flag) Returns whether the module has the specified access flag set.default booleanModuleOpenInfo.has(AccessFlag flag) Returns whether the specified access flag is set.default booleanModuleRequireInfo.has(AccessFlag flag) Returns whether the specific access flag is set.ModuleAttribute.ModuleAttributeBuilder.moduleFlags(AccessFlag... moduleFlags) Sets the module flagsstatic InnerClassInfoInnerClassInfo.of(ClassDesc innerClass, Optional<ClassDesc> outerClass, Optional<String> innerName, AccessFlag... flags) Returns an inner class description.static MethodParameterInfoMethodParameterInfo.of(Optional<String> name, AccessFlag... flags) Returns a method parameter description.Method parameters in java.lang.classfile.attribute with type arguments of type AccessFlagModifier and TypeMethodDescriptionModuleAttribute.ModuleAttributeBuilder.exports(PackageDesc pkge, Collection<AccessFlag> exportsFlags, ModuleDesc... exportsToModules) Adds exported packagestatic ModuleExportInfoModuleExportInfo.of(PackageEntry exports, Collection<AccessFlag> exportFlags, ModuleEntry... exportsTo) Returns a module export description.static ModuleExportInfoModuleExportInfo.of(PackageEntry exports, Collection<AccessFlag> exportFlags, List<ModuleEntry> exportsTo) Returns a module export description.static ModuleExportInfoModuleExportInfo.of(PackageDesc exports, Collection<AccessFlag> exportFlags, ModuleDesc... exportsTo) Returns a module export description.static ModuleExportInfoModuleExportInfo.of(PackageDesc exports, Collection<AccessFlag> exportFlags, List<ModuleDesc> exportsTo) Returns a module export description.static ModuleOpenInfoModuleOpenInfo.of(PackageEntry opens, Collection<AccessFlag> opensFlags, ModuleEntry... opensTo) Returns a module open description.static ModuleOpenInfoModuleOpenInfo.of(PackageEntry opens, Collection<AccessFlag> opensFlags, List<ModuleEntry> opensTo) Returns a module open description.static ModuleOpenInfoModuleOpenInfo.of(PackageDesc opens, Collection<AccessFlag> opensFlags, ModuleDesc... opensTo) Returns a module open description.static ModuleOpenInfoModuleOpenInfo.of(PackageDesc opens, Collection<AccessFlag> opensFlags, List<ModuleDesc> opensTo) Returns a module open description.static ModuleRequireInfoModuleRequireInfo.of(ModuleEntry requires, Collection<AccessFlag> requiresFlags, Utf8Entry requiresVersion) Returns a module requirement description.static ModuleRequireInfoModuleRequireInfo.of(ModuleDesc requires, Collection<AccessFlag> requiresFlags, String requiresVersion) Returns a module requirement description.ModuleAttribute.ModuleAttributeBuilder.opens(PackageDesc pkge, Collection<AccessFlag> opensFlags, ModuleDesc... opensToModules) Opens packageModuleAttribute.ModuleAttributeBuilder.requires(ModuleDesc module, Collection<AccessFlag> requiresFlags, String version) Adds module requirement -
Uses of AccessFlag in java.lang.module
Methods in java.lang.module that return types with arguments of type AccessFlagModifier and TypeMethodDescriptionModuleDescriptor.accessFlags()Returns the set of the module flags.ModuleDescriptor.Exports.accessFlags()Returns the set of the module export flags for this module descriptor.ModuleDescriptor.Opens.accessFlags()Returns the set of the module opens flags.ModuleDescriptor.Requires.accessFlags()Returns the set of the module requires flags. -
Uses of AccessFlag in java.lang.reflect
Subclasses with type arguments of type AccessFlag in java.lang.reflectModifier and TypeClassDescriptionenumMethods in java.lang.reflect that return AccessFlagModifier and TypeMethodDescriptionstatic AccessFlagReturns the enum constant of this class with the specified name.static AccessFlag[]AccessFlag.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in java.lang.reflect that return types with arguments of type AccessFlagModifier and TypeMethodDescriptionExecutable.accessFlags()Returns an unmodifiable set of the access flags for the executable represented by this object, possibly empty.Field.accessFlags()Returns an unmodifiable set of the access flags for this field, possibly empty.default Set<AccessFlag> Member.accessFlags()Returns an unmodifiable set of the access flags for this member, possibly empty.Parameter.accessFlags()Returns an unmodifiable set of the access flags for the parameter represented by this object, possibly empty.static Set<AccessFlag> AccessFlag.maskToAccessFlags(int mask, AccessFlag.Location location) Returns an unmodifiable set of access flags for the given mask value appropriate for the location in question.