| java.lang.Object sun.io.Converters
Converters | public class Converters (Code) | | Package-private utility class that caches the default converter classes and
provides other logic common to both the ByteToCharConverter and
CharToByteConverter classes.
author: Mark Reinhold version: 1.7, 00/07/07 since: JDK1.2 |
BYTE_TO_CHAR | final public static int BYTE_TO_CHAR(Code) | | |
CHAR_TO_BYTE | final public static int CHAR_TO_BYTE(Code) | | |
getDefaultEncodingName | public static String getDefaultEncodingName()(Code) | | |
isCached | public static boolean isCached(int type, String encoding)(Code) | | |
newConverter | static Object newConverter(int type, String enc) throws UnsupportedEncodingException(Code) | | Create a converter object that implements the given type of converter
for the given encoding, or throw an UnsupportedEncodingException if no
appropriate converter class can be found and instantiated
|
newDefaultConverter | static Object newDefaultConverter(int type)(Code) | | Create a converter object that implements the given type of converter
for the default encoding, falling back to ISO 8859-1 if the default
encoding cannot be determined.
|
resetDefaultEncodingName | public static void resetDefaultEncodingName()(Code) | | |
|
|