Uses of Class
java.lang.invoke.SwitchPoint
-
Packages that use SwitchPoint 软件包 描述 java.lang.invoke java.lang.invoke
包提供了与Java虚拟机交互的低级基元。jdk.dynalink.linker 包含语言运行时所需的接口和类,以实现其自己的语言特定对象模型和类型转换。 -
-
Uses of SwitchPoint in java.lang.invoke
Methods in java.lang.invoke with parameters of type SwitchPoint 变量和类型 方法 描述 static void
SwitchPoint. invalidateAll(SwitchPoint[] switchPoints)
将所有给定的切换点设置为无效状态。 -
Uses of SwitchPoint in jdk.dynalink.linker
Methods in jdk.dynalink.linker that return SwitchPoint 变量和类型 方法 描述 SwitchPoint[]
GuardedInvocation. getSwitchPoints()
返回可用于使此调用句柄的链接无效的切换点。Methods in jdk.dynalink.linker with parameters of type SwitchPoint 变量和类型 方法 描述 GuardedInvocation
GuardedInvocation. addSwitchPoint(SwitchPoint newSwitchPoint)
使用添加的切换点创建新的受保护调用。Constructors in jdk.dynalink.linker with parameters of type SwitchPoint 构造器 描述 GuardedInvocation(MethodHandle invocation, MethodHandle guard, SwitchPoint switchPoint)
使用保护方法句柄和可用于使其无效的切换点创建新的保护调用。GuardedInvocation(MethodHandle invocation, MethodHandle guard, SwitchPoint[] switchPoints, 类<? extends Throwable> exception)
创建一个新的受保护调用,具有一个保护方法句柄,可用于使其无效的任意数量的切换点,以及一个异常,如果在调用时抛出它也会使其无效。GuardedInvocation(MethodHandle invocation, MethodHandle guard, SwitchPoint switchPoint, 类<? extends Throwable> exception)
创建一个新的受保护调用,带有一个保护方法句柄,一个可用于使其无效的切换点,以及一个异常,如果在调用时抛出它也会使其无效。GuardedInvocation(MethodHandle invocation, SwitchPoint switchPoint)
创建一个可以通过切换点无效的新的受保护调用。
-