Java org.apache.commons.lang3 CharEncoding fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang3 CharEncoding fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang3 CharEncoding.

The text is from its open source code.

Subclass

org.apache.commons.lang3.CharEncoding has subclasses.
Click this link to see all its subclasses.

Field

StringISO_8859_1

ISO Latin Alphabet #1, also known as ISO-LATIN-1.

Every implementation of the Java platform is required to support this character encoding.

StringUS_ASCII

Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set.

Every implementation of the Java platform is required to support this character encoding.

StringUTF_16

Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial byte-order mark (either order accepted on input, big-endian used on output).

Every implementation of the Java platform is required to support this character encoding.

StringUTF_8

Eight-bit Unicode Transformation Format.

Every implementation of the Java platform is required to support this character encoding.

Method

booleanisSupported(final String name)

Returns whether the named charset is supported.

This is similar to java.nio.charset.Charset.isSupported(String) but handles more formats