Uses of Class
jdk.dynalink.CallSiteDescriptor
-
Packages that use CallSiteDescriptor 软件包 描述 jdk.dynalink 包含用于链接invokedynamic
呼叫站点的接口和类。jdk.dynalink.linker 包含语言运行时所需的接口和类,以实现自己的特定于语言的对象模型和类型转换。jdk.dynalink.linker.support 包含课程,使语言运行时更方便地实现自己的特定于语言的对象模型,并通过提供一些类的基本实现以及各种实用程序来类型转换。jdk.dynalink.support 包含通过提供某些类的基本实现以及各种实用程序使Dynalink更方便的类。 -
-
Uses of CallSiteDescriptor in jdk.dynalink
Methods in jdk.dynalink that return CallSiteDescriptor Modifier and Type 方法 描述 CallSiteDescriptor
CallSiteDescriptor. changeMethodType(MethodType newMethodType)
查找或创建仅在其描述符的方法类型中不同的调用站点描述符。protected CallSiteDescriptor
CallSiteDescriptor. changeMethodTypeInternal(MethodType newMethodType)
查找或创建仅在其描述符的方法类型中不同的调用站点描述符。CallSiteDescriptor
CallSiteDescriptor. changeOperation(Operation newOperation)
查找或创建一个调用站点描述符,其操作与此描述符不同。protected CallSiteDescriptor
CallSiteDescriptor. changeOperationInternal(Operation newOperation)
查找或创建一个调用站点描述符,其操作与此描述符不同。CallSiteDescriptor
RelinkableCallSite. getDescriptor()
返回此调用站点的描述符。 -
Uses of CallSiteDescriptor in jdk.dynalink.linker
Methods in jdk.dynalink.linker that return CallSiteDescriptor Modifier and Type 方法 描述 CallSiteDescriptor
LinkRequest. getCallSiteDescriptor()
返回被链接的呼叫站点的呼叫站点描述符。Methods in jdk.dynalink.linker with parameters of type CallSiteDescriptor Modifier and Type 方法 描述 GuardedInvocation
GuardedInvocation. asType(CallSiteDescriptor desc)
更改调用的类型,就好像应用了它的调用的MethodHandle.asType(MethodType)
和它的后卫(如果它有一个(返回类型更改为布尔 值守 ))。LinkRequest
LinkRequest. replaceArguments(CallSiteDescriptor callSiteDescriptor, Object... arguments)
返回与此调用站点描述符相同的请求,并使用指定的参数替换参数。 -
Uses of CallSiteDescriptor in jdk.dynalink.linker.support
Methods in jdk.dynalink.linker.support that return CallSiteDescriptor Modifier and Type 方法 描述 CallSiteDescriptor
SimpleLinkRequest. getCallSiteDescriptor()
Methods in jdk.dynalink.linker.support with parameters of type CallSiteDescriptor Modifier and Type 方法 描述 LinkRequest
SimpleLinkRequest. replaceArguments(CallSiteDescriptor newCallSiteDescriptor, Object... newArguments)
Constructors in jdk.dynalink.linker.support with parameters of type CallSiteDescriptor Constructor 描述 SimpleLinkRequest(CallSiteDescriptor callSiteDescriptor, boolean callSiteUnstable, Object... arguments)
创建一个新的链接请求。 -
Uses of CallSiteDescriptor in jdk.dynalink.support
Methods in jdk.dynalink.support that return CallSiteDescriptor Modifier and Type 方法 描述 CallSiteDescriptor
AbstractRelinkableCallSite. getDescriptor()
Constructors in jdk.dynalink.support with parameters of type CallSiteDescriptor Constructor 描述 AbstractRelinkableCallSite(CallSiteDescriptor descriptor)
创建一个新的抽象可重新链接的呼叫站点。ChainedCallSite(CallSiteDescriptor descriptor)
创建一个新的链接呼叫站点。SimpleRelinkableCallSite(CallSiteDescriptor descriptor)
创建一个具有单一内联缓存策略的新呼叫站点。
-