All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.saxon.charcode.CP852CharacterSet Maven / Gradle / Ivy

Go to download

Provides a basic XSLT 2.0 and XQuery 1.0 processor (W3C Recommendations, January 2007). Command line interfaces and implementations of several Java APIs (DOM, XPath, s9api) are also included.

The newest version!
package net.sf.saxon.charcode;

import java.util.Arrays;

/**
 * This package defines character set CP852
 */

public class CP852CharacterSet implements CharacterSet {

    public static CP852CharacterSet theInstance = null;

    private CP852CharacterSet() {
    }

    public static CP852CharacterSet getInstance() {
        if (theInstance == null) {
            init();
            theInstance = new CP852CharacterSet();
        }
        return theInstance;
    }

    private static boolean c[] = null;

    private static void init() {
        c = new boolean[400];
//        for (int i=0; i<127; i++) {
//            c[i] = true;
//        }
        Arrays.fill(c, 0, 127, true);
//        for (int i=127; i<400; i++) {
//            c[i] = false;
//        }
        Arrays.fill(c, 127, 400, false);

        c[167] = true;
        c[171] = true;
        c[172] = true;
        c[187] = true;
        c[193] = true;
        c[194] = true;
        c[196] = true;
        c[199] = true;
        c[201] = true;
        c[203] = true;
        c[205] = true;
        c[206] = true;
        c[211] = true;
        c[212] = true;
        c[214] = true;
        c[218] = true;
        c[220] = true;
        c[221] = true;
        c[223] = true;
        c[225] = true;
        c[226] = true;
        c[228] = true;
        c[231] = true;
        c[233] = true;
        c[235] = true;
        c[237] = true;
        c[238] = true;
        c[243] = true;
        c[244] = true;
        c[246] = true;
        c[250] = true;
        c[252] = true;
        c[253] = true;
        c[258] = true;
        c[259] = true;
        c[260] = true;
        c[261] = true;
        c[262] = true;
        c[263] = true;
        c[268] = true;
        c[269] = true;
        c[270] = true;
        c[271] = true;
        c[272] = true;
        c[273] = true;
        c[280] = true;
        c[281] = true;
        c[282] = true;
        c[283] = true;
        c[313] = true;
        c[314] = true;
        c[317] = true;
        c[318] = true;
        c[321] = true;
        c[322] = true;
        c[323] = true;
        c[324] = true;
        c[327] = true;
        c[328] = true;
        c[336] = true;
        c[337] = true;
        c[340] = true;
        c[341] = true;
        c[344] = true;
        c[345] = true;
        c[346] = true;
        c[347] = true;
        c[350] = true;
        c[351] = true;
        c[352] = true;
        c[353] = true;
        c[355] = true;
        c[356] = true;
        c[357] = true;
        c[366] = true;
        c[367] = true;
        c[368] = true;
        c[369] = true;
        c[377] = true;
        c[378] = true;
        c[379] = true;
        c[380] = true;
        c[381] = true;
        c[382] = true;
    }

    public final boolean inCharset(int ch) {
        return ch < 400 && c[ch];
    }

    public final String getEncodingName() {
        return "cp852";
    }
}

//
// The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
// you may not use this file except in compliance with the License. You may obtain a copy of the
// License at http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
// See the License for the specific language governing rights and limitations under the License.
//
// The Original Code is: all this file.
//
// The Initial Developer of the Original Code is Zdenek Wagner [[email protected]].
//
// Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
//
// Contributor(s): none.
//

/**

 Originally contributed in 2001.

 In releases prior to Saxon 9.0, this code was present under a different license. It has been
 recontributed under the Mozilla license by the original author on 2007-10-21.

 The character mapping was obtained by conversion a character table of all non-US characters from
 CP852 into UNICODE entities using a simple stylesheet and saxon with the following attribute in
 xsl:output

 saxon:character-representation="dec;dec"

 The class was tested by reverse conversion of the generated table to native representation as well
 as by transformation of several texts which use Czech and Slovak accented characters.
*/




© 2015 - 2025 Weber Informatics LLC | Privacy Policy