Interface ImportTree
- All Superinterfaces:
Tree
A tree node for an import declaration.
For example:
import qualifiedIdentifier ; import static qualifiedIdentifier ;
- See Java Language Specification:
-
7.5 Import Declarations
- Since:
- 1.6
-
Method Details
-
isStatic
boolean isStatic()Returns true if this is a static import declaration.- Returns:
- true if this is a static import
-
isModule
boolean isModule()isModule
is a reflective preview API of the Java platform.Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.Returns true if this is an module import declaration..- Returns:
- true if this is an module import declaration.
- Since:
- 23
-
getQualifiedIdentifier
Tree getQualifiedIdentifier()Returns the qualified identifier for the declaration(s) being imported. If this is an import-on-demand declaration, the qualified identifier will end in "*".- Returns:
- a qualified identifier, ending in "*" if and only if this is an import-on-demand
-