Uses of Interface
javax.lang.model.element.ModuleElement.Directive
-
Packages that use ModuleElement.Directive 软件包 描述 javax.lang.model.element 用于建模Java编程语言元素的接口。javax.lang.model.util 协助处理 program elements及 types的公用事业 。 -
-
Uses of ModuleElement.Directive in javax.lang.model.element
Subinterfaces of ModuleElement.Directive in javax.lang.model.element Modifier and Type 接口 描述 static interface
ModuleElement.ExportsDirective
一个模块的导出包。static interface
ModuleElement.OpensDirective
一个开放的模块包。static interface
ModuleElement.ProvidesDirective
由模块提供的服务的实现。static interface
ModuleElement.RequiresDirective
模块的依赖。static interface
ModuleElement.UsesDirective
对模块使用的服务的引用。Methods in javax.lang.model.element that return ModuleElement.Directive Modifier and Type 方法 描述 ModuleElement.Directive
UnknownDirectiveException. getUnknownDirective()
返回未知指令。Methods in javax.lang.model.element that return types with arguments of type ModuleElement.Directive Modifier and Type 方法 描述 List<? extends ModuleElement.Directive>
ModuleElement. getDirectives()
返回此模块声明中包含的伪指令。Methods in javax.lang.model.element with parameters of type ModuleElement.Directive Modifier and Type 方法 描述 default R
ModuleElement.DirectiveVisitor. visit(ModuleElement.Directive d)
访问任何指令,好像通过传递自己的该指令的accept
方法并传递null
作为附加参数。default R
ModuleElement.DirectiveVisitor. visit(ModuleElement.Directive d, P p)
访问任何指令,好像通过传递自己的指令的accept
方法。default R
ModuleElement.DirectiveVisitor. visitUnknown(ModuleElement.Directive d, P p)
访问未知的指令。Constructors in javax.lang.model.element with parameters of type ModuleElement.Directive Constructor 描述 UnknownDirectiveException(ModuleElement.Directive d, Object p)
创建一个新的UnknownElementException
。 -
Uses of ModuleElement.Directive in javax.lang.model.util
Methods in javax.lang.model.util with parameters of type ModuleElement.Directive Modifier and Type 方法 描述 default Elements.Origin
Elements. getOrigin(ModuleElement m, ModuleElement.Directive directive)
返回给定模块指令的 原点 。Method parameters in javax.lang.model.util with type arguments of type ModuleElement.Directive Modifier and Type 方法 描述 static List<ModuleElement.ExportsDirective>
ElementFilter. exportsIn(Iterable<? extends ModuleElement.Directive> directives)
在directives
返回exports
指令的列表。static List<ModuleElement.OpensDirective>
ElementFilter. opensIn(Iterable<? extends ModuleElement.Directive> directives)
在directives
返回opens
指令的列表。static List<ModuleElement.ProvidesDirective>
ElementFilter. providesIn(Iterable<? extends ModuleElement.Directive> directives)
在directives
返回provides
指令的列表。static List<ModuleElement.RequiresDirective>
ElementFilter. requiresIn(Iterable<? extends ModuleElement.Directive> directives)
返回列表requires
的指令directives
。static List<ModuleElement.UsesDirective>
ElementFilter. usesIn(Iterable<? extends ModuleElement.Directive> directives)
Returns a list ofuses
directives indirectives
.
-