com.jakewharton.Charsets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disklrucache Show documentation
Show all versions of disklrucache Show documentation
A disk-based implementaion of a least-recently used cache.
package com.jakewharton;
import java.nio.charset.Charset;
/** From java.nio.charset.Charsets */
class Charsets {
static final Charset US_ASCII = Charset.forName("US-ASCII");
static final Charset UTF_8 = Charset.forName("UTF-8");
}