public sealed interface PackageDesc
Package
constant. To create a PackageDesc
for a package, use the of(String)
or ofInternalName(String)
method.
Modifier and Type | Method | Description |
---|---|---|
boolean |
equals |
Compare the specified object with this descriptor for equality. |
String |
internalName() |
Returns the fully qualified (slash-separated) package name in internal form of this PackageDesc . |
default String |
name() |
Returns the fully qualified (dot-separated) package name of this PackageDesc . |
static PackageDesc |
of |
Returns a PackageDesc for a package, given the name of the package, such as "java.lang" . |
static PackageDesc |
ofInternalName |
Returns a PackageDesc for a package, given the name of the package in internal form, such as "java/lang" . |
static PackageDesc of(String name)
PackageDesc
for a package, given the name of the package, such as "java.lang"
.name
- the fully qualified (dot-separated) package namePackageDesc
describing the desired packageNullPointerException
- if the argument is null
IllegalArgumentException
- if the name string is not in the correct formatstatic PackageDesc ofInternalName(String name)
PackageDesc
for a package, given the name of the package in internal form, such as "java/lang"
.name
- the fully qualified package name, in internal (slash-separated) formPackageDesc
describing the desired packageNullPointerException
- if the argument is null
IllegalArgumentException
- if the name string is not in the correct formatString internalName()
PackageDesc
.default String name()
PackageDesc
.boolean equals(Object o)
true
if and only if the specified object is also a PackageDesc
and both describe the same package.
© 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.base/java/lang/constant/PackageDesc.html