W3cubDocs

/OpenJDK 25

Interface SwitchCase

public sealed interface SwitchCase
Models a single case in a lookupswitch or tableswitch instruction.

A switch case is composite:

SwitchCase(
    int caseValue,
    Label target
)
Since:
24
See Also:

Method Summary

Modifier and Type Method Description
int caseValue()
Returns the integer value corresponding to this case.
static SwitchCase of(int caseValue, Label target)
Returns a new switch case.
Label target()
Returns the branch target corresponding to this case.

Method Details

caseValue

int caseValue()
Returns the integer value corresponding to this case.
Returns:
the integer value corresponding to this case

target

Label target()
Returns the branch target corresponding to this case.
Returns:
the branch target corresponding to this case

of

static SwitchCase of(int caseValue, Label target)
Returns a new switch case.
Parameters:
caseValue - the integer value for the case
target - the branch target for the case
Returns:
a new switch case

© 1993, 2025, 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/25/docs/api/java.base/java/lang/classfile/instruction/SwitchCase.html