Package com.google.common.reflect
Class ClassPath.ResourceInfo
- java.lang.Object
-
- com.google.common.reflect.ClassPath.ResourceInfo
-
- Direct Known Subclasses:
ClassPath.ClassInfo
- Enclosing class:
- ClassPath
public static class ClassPath.ResourceInfo extends Object
Represents a class path resource that can be either a class file or any other resource file loadable from the class path.- Since:
- 14.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteSourceasByteSource()Returns aByteSourceview of the resource from which its bytes can be read.CharSourceasCharSource(Charset charset)Returns aCharSourceview of the resource from which its bytes can be read as characters decoded with the givencharset.booleanequals(Object obj)StringgetResourceName()Returns the fully qualified name of the resource.inthashCode()StringtoString()URLurl()Returns the url identifying the resource.
-
-
-
Method Detail
-
url
public final URL url()
Returns the url identifying the resource.- Throws:
NoSuchElementException- if the resource cannot be loaded through the class loader, despite physically existing in the class path.
-
asByteSource
public final ByteSource asByteSource()
Returns aByteSourceview of the resource from which its bytes can be read.- Throws:
NoSuchElementException- if the resource cannot be loaded through the class loader, despite physically existing in the class path.- Since:
- 20.0
-
asCharSource
public final CharSource asCharSource(Charset charset)
Returns aCharSourceview of the resource from which its bytes can be read as characters decoded with the givencharset.- Throws:
NoSuchElementException- if the resource cannot be loaded through the class loader, despite physically existing in the class path.- Since:
- 20.0
-
getResourceName
public final String getResourceName()
Returns the fully qualified name of the resource. Such as "com/mycomp/foo/bar.txt".
-
equals
public boolean equals(@CheckForNull Object obj)
-
-