public enum JsonEncoding extends Enum<JsonEncoding>
 Note: if application want to explicitly disregard Encoding
 limitations (to read in JSON encoded using an encoding not
 listed as allowed), they can use Reader /
 Writer instances as input
| Enum Constant and Description | 
|---|
| UTF16_BE | 
| UTF16_LE | 
| UTF32_BE | 
| UTF32_LE | 
| UTF8 | 
| Modifier and Type | Field and Description | 
|---|---|
| protected boolean | _bigEndian | 
| protected int | _bits | 
| protected String | _javaName | 
| Modifier and Type | Method and Description | 
|---|---|
| int | bits() | 
| String | getJavaName()Method for accessing encoding name that JDK will support. | 
| boolean | isBigEndian()Whether encoding is big-endian (if encoding supports such
 notion). | 
| static JsonEncoding | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static JsonEncoding[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final JsonEncoding UTF8
public static final JsonEncoding UTF16_BE
public static final JsonEncoding UTF16_LE
public static final JsonEncoding UTF32_BE
public static final JsonEncoding UTF32_LE
protected final String _javaName
protected final boolean _bigEndian
protected final int _bits
public static JsonEncoding[] values()
for (JsonEncoding c : JsonEncoding.values()) System.out.println(c);
public static JsonEncoding valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getJavaName()
public boolean isBigEndian()
UTF8), return value is undefined.public int bits()
Copyright © 2008-2016 FasterXML. All Rights Reserved.