AnnotatedConstruct
, TypeMirror
public interface IntersectionType extends TypeMirror
An intersection type can be either implicitly or explicitly declared in a program. For example, the bound of the type parameter <T extends Number & Runnable>
is an (implicit) intersection type. This is represented by an IntersectionType
with Number
and Runnable
as its bounds.
IntersectionType
is used to model the explicit target type of a cast expression.Modifier and Type | Method | Description |
---|---|---|
List |
getBounds() |
Returns the bounds comprising this intersection type. |
accept, equals, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getKind, hashCode, toString
List<? extends TypeMirror> getBounds()
© 1993, 2023, 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/21/docs/api/java.compiler/javax/lang/model/type/IntersectionType.html