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 Modifier and Type 方法 描述 static void
SwitchPoint. invalidateAll(SwitchPoint[] switchPoints)
将所有给定的切换点设置为无效状态。 -
Uses of SwitchPoint in jdk.dynalink.linker
Methods in jdk.dynalink.linker that return SwitchPoint Modifier and Type 方法 描述 SwitchPoint[]
GuardedInvocation. getSwitchPoints()
返回可用于使该调用句柄的链接无效的切换点。Methods in jdk.dynalink.linker with parameters of type SwitchPoint Modifier and Type 方法 描述 GuardedInvocation
GuardedInvocation. addSwitchPoint(SwitchPoint newSwitchPoint)
使用添加的切换点创建新的守卫调用。Constructors in jdk.dynalink.linker with parameters of type SwitchPoint Constructor 描述 GuardedInvocation(MethodHandle invocation, MethodHandle guard, SwitchPoint switchPoint)
创建一个新的守卫调用,同时具有保护方法句柄和可用于使其无效的切换点。GuardedInvocation(MethodHandle invocation, MethodHandle guard, SwitchPoint[] switchPoints, Class<? extends Throwable> exception)
创建一个新的有保护的调用,具有保护方法句柄,可以使用任何数量的切换点来使其无效,以及如果在调用时抛出的异常也会使其失效。GuardedInvocation(MethodHandle invocation, MethodHandle guard, SwitchPoint switchPoint, Class<? extends Throwable> exception)
创建一个新的守卫调用,具有保护方法句柄,可用于使其无效的切换点,以及如果在调用时抛出也会使其失效的异常。GuardedInvocation(MethodHandle invocation, SwitchPoint switchPoint)
创建一个新的受保护的调用,可以由切换点无效。
-