blob: cab7a52ba1cb99db9f37629e61292b0fe2f7b4a1 [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 1996-2005, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
*******************************************************************************
*/
package com.ibm.icu4jni.charset;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
public final class CharsetICU extends Charset {
private final String icuCanonicalName;
protected CharsetICU(String canonicalName, String icuCanonName, String[] aliases) {
super(canonicalName, aliases);
icuCanonicalName = icuCanonName;
}
public CharsetDecoder newDecoder() {
return CharsetDecoderICU.newInstance(this, icuCanonicalName);
}
public CharsetEncoder newEncoder() {
return CharsetEncoderICU.newInstance(this, icuCanonicalName);
}
public boolean contains(Charset cs) {
if (cs == null) {
return false;
} else if (this.equals(cs)) {
return true;
}
return NativeConverter.contains(this.name(), cs.name());
}
}