@Beta public static final class ClassPath.ClassInfo extends ClassPath.ResourceInfo
load()
.Modifier and Type | Method and Description |
---|---|
String |
getName()
Returns the fully qualified name of the class.
|
String |
getPackageName()
Returns the package name of the class, without attempting to load the class.
|
String |
getSimpleName()
Returns the simple name of the underlying class as given in the source code.
|
Class<?> |
load()
Loads (but doesn't link or initialize) the class.
|
String |
toString() |
asByteSource, asCharSource, equals, getResourceName, hashCode, url
public String getPackageName()
Behaves identically to Package.getName()
but does not require the class (or
package) to be loaded.
public String getSimpleName()
Behaves identically to Class.getSimpleName()
but does not require the class to be
loaded.
public String getName()
Behaves identically to Class.getName()
but does not require the class to be
loaded.
public Class<?> load()
LinkageError
- when there were errors in loading classes that this class depends on.
For example, NoClassDefFoundError
.public String toString()
toString
in class ClassPath.ResourceInfo
Copyright © 2010-2017. All Rights Reserved.