All Downloads are FREE. Search and download functionalities are using the official Maven repository.

biz.paluch.logging.gelf.intern.Charsets Maven / Gradle / Ivy

There is a newer version: 1.15.1
Show newest version
package biz.paluch.logging.gelf.intern;

import java.nio.charset.Charset;

/**
 * @author Mark Paluch
 * @since 17.07.14 10:45
 */
class Charsets {
    public final static Charset ASCII = Charset.forName("ASCII");
    public final static Charset UTF8 = Charset.forName("UTF-8");

    public final static byte[] ascii(String input) {
        return input.getBytes(ASCII);
    }

    public final static byte[] utf8(String input) {
        return input.getBytes(UTF8);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy