pxb.java.nio.charset.StandardCharsets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package pxb.java.nio.charset;
import java.nio.charset.Charset;
public class StandardCharsets {
public static Charset UTF_8 = Charset.forName("UTF-8");
public static Charset ISO_8859_1 = Charset.forName("iso-8859-1");
}