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
@Beta public static class ClassPath.ResourceInfo extends java.lang.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 boolean
equals(java.lang.Object obj)
java.lang.String
getResourceName()
Returns the fully qualified name of the resource.int
hashCode()
java.lang.String
toString()
java.net.URL
url()
Returns the url identifying the resource.
-
-
-
Method Detail
-
url
public final java.net.URL url()
Returns the url identifying the resource.
-
getResourceName
public final java.lang.String getResourceName()
Returns the fully qualified name of the resource. Such as "com/mycomp/foo/bar.txt".
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-