Returns a CharSource view of the resource from which its bytes can be read as characters decoded with the given charset. @throws NoSuchElementException if the resource cannot be loaded through the class loader, despite physically existing in the class path. @since 20.0
(Charset charset)
| 226 | |
| 227 | |
| 228 | public final CharSource asCharSource(Charset charset) { |
| 229 | return Resources.asCharSource(url(), charset); |
| 230 | } |
| 231 | |
| 232 | /** Returns the fully qualified name of the resource. Such as "com/mycomp/foo/bar.txt". */ |
| 233 |
nothing calls this directly
no test coverage detected