Class SwitchBootstraps
public class SwitchBootstraps extends Object
SwitchBootstraps is a preview API of the Java platform. invokedynamic call sites that implement the selection functionality of the switch statement. The bootstraps take additional static arguments corresponding to the case labels of the switch, implicitly numbered sequentially from [0..N).- Since:
- 17
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
static CallSite |
enumSwitch |
Bootstrap method for linking an invokedynamic call site that implements a switch on a target of an enum type. |
static CallSite |
typeSwitch |
Bootstrap method for linking an invokedynamic call site that implements a switch on a target of a reference type. |
Method Details
typeSwitch
public static CallSite typeSwitch(MethodHandles.Lookup lookup, String invocationName, MethodType invocationType, Object... labels)
invokedynamic call site that implements a switch on a target of a reference type. The static arguments are an array of case labels which must be non-null and of type String or Integer or Class. The type of the returned CallSite's method handle will have a return type of int. It has two parameters: the first argument will be an Object instance (target) and the second will be int (restart).
If the target is null, then the method of the call site returns -1.
If the target is not null, then the method of the call site returns the index of the first element in the labels array starting from the restart index matching one of the following conditions:
- the element is of type
Classthat is assignable from the target's class; or - the element is of type
StringorIntegerand equals to the target.
If no element in the labels array matches the target, then the method of the call site return the length of the labels array.
- Parameters:
-
lookup- Represents a lookup context with the accessibility privileges of the caller. When used withinvokedynamic, this is stacked automatically by the VM. -
invocationName- unused -
invocationType- The invocation type of theCallSitewith two parameters, a reference type, anint, andintas a return type. -
labels- case labels -StringandIntegerconstants andClassinstances, in any combination - Returns:
- a
CallSitereturning the first matching element as described above - Throws:
-
NullPointerException- if any argument isnull -
IllegalArgumentException- if any element in the labels array is null, if the invocation type is not not a method type of first parameter of a reference type, second parameter of typeintand withintas its return type, or iflabelscontains an element that is not of typeString,IntegerorClass. - See Java Virtual Machine Specification:
- 4.4.6 The CONSTANT_NameAndType_info Structure
4.4.10 The CONSTANT_Dynamic_info and CONSTANT_InvokeDynamic_info Structures
enumSwitch
public static CallSite enumSwitch(MethodHandles.Lookup lookup, String invocationName, MethodType invocationType, Object... labels)
invokedynamic call site that implements a switch on a target of an enum type. The static arguments are used to encode the case labels associated to the switch construct, where each label can be encoded in two ways: - as a
Stringvalue, which represents the name of the enum constant associated with the label - as a
Classvalue, which represents the enum type associated with a type test pattern
The returned CallSite's method handle will have a return type of int and accepts two parameters: the first argument will be an Enum instance (target) and the second will be int (restart).
If the target is null, then the method of the call site returns -1.
If the target is not null, then the method of the call site returns the index of the first element in the labels array starting from the restart index matching one of the following conditions:
- the element is of type
Classthat is assignable from the target's class; or - the element is of type
Stringand equals to the target enum constant'sEnum.name().
If no element in the labels array matches the target, then the method of the call site return the length of the labels array.
- Parameters:
-
lookup- Represents a lookup context with the accessibility privileges of the caller. When used withinvokedynamic, this is stacked automatically by the VM. -
invocationName- unused -
invocationType- The invocation type of theCallSitewith two parameters, an enum type, anint, andintas a return type. -
labels- case labels -Stringconstants andClassinstances, in any combination - Returns:
- a
CallSitereturning the first matching element as described above - Throws:
-
NullPointerException- if any argument isnull -
IllegalArgumentException- if any element in the labels array is null, if the invocation type is not a method type whose first parameter type is an enum type, second parameter of typeintand whose return type isint, or iflabelscontains an element that is not of typeStringorClassof the target enum type. - See Java Virtual Machine Specification:
- 4.4.6 The CONSTANT_NameAndType_info Structure
4.4.10 The CONSTANT_Dynamic_info and CONSTANT_InvokeDynamic_info Structures
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/runtime/SwitchBootstraps.html
SwitchBootstrapswhen preview features are enabled.