public class

EUC_TW

extends Charset
implements HistoricallyNamedCharset
java.lang.Object
   ↳ java.nio.charset.Charset
     ↳ sun.nio.cs.ext.EUC_TW

Summary

Nested Classes
class EUC_TW.Decoder  
class EUC_TW.Encoder  
Public Constructors
EUC_TW()
Public Methods
boolean contains(Charset cs)
Tells whether or not this charset contains the given charset.
static String getCNSTab1()
static String getCNSTab2()
static String getCNSTab3()
static String getUniTab1()
static String getUniTab2()
static String getUniTab3()
static String getUnicodeCNS1()
static String getUnicodeCNS15()
static String getUnicodeCNS2()
static String getUnicodeCNS3()
static String getUnicodeCNS4()
static String getUnicodeCNS5()
static String getUnicodeCNS6()
static String getUnicodeCNS7()
String historicalName()
CharsetDecoder newDecoder()
Constructs a new decoder for this charset.
CharsetEncoder newEncoder()
Constructs a new encoder for this charset.
[Expand]
Inherited Methods
From class java.nio.charset.Charset
From class java.lang.Object
From interface java.lang.Comparable
From interface sun.nio.cs.HistoricallyNamedCharset

Public Constructors

public EUC_TW ()

Public Methods

public boolean contains (Charset cs)

Tells whether or not this charset contains the given charset.

A charset C is said to contain a charset D if, and only if, every character representable in D is also representable in C. If this relationship holds then it is guaranteed that every string that can be encoded in D can also be encoded in C without performing any replacements.

That C contains D does not imply that each character representable in C by a particular byte sequence is represented in D by the same byte sequence, although sometimes this is the case.

Every charset contains itself.

This method computes an approximation of the containment relation: If it returns true then the given charset is known to be contained by this charset; if it returns false, however, then it is not necessarily the case that the given charset is not contained in this charset.

Returns
  • true if the given charset is contained in this charset

public static String getCNSTab1 ()

public static String getCNSTab2 ()

public static String getCNSTab3 ()

public static String getUniTab1 ()

public static String getUniTab2 ()

public static String getUniTab3 ()

public static String getUnicodeCNS1 ()

public static String getUnicodeCNS15 ()

public static String getUnicodeCNS2 ()

public static String getUnicodeCNS3 ()

public static String getUnicodeCNS4 ()

public static String getUnicodeCNS5 ()

public static String getUnicodeCNS6 ()

public static String getUnicodeCNS7 ()

public String historicalName ()

public CharsetDecoder newDecoder ()

Constructs a new decoder for this charset.

Returns
  • A new decoder for this charset

public CharsetEncoder newEncoder ()

Constructs a new encoder for this charset.

Returns
  • A new encoder for this charset