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

ie.omk.smpp.util.Latin1Encoding Maven / Gradle / Ivy

The newest version!
package ie.omk.smpp.util;

import java.io.UnsupportedEncodingException;

/**
 * Encoding class representing the Latin-1 (ISO-8859-1) alphabet encoding.
 */
public class Latin1Encoding extends AlphabetEncoding {
    private static final int DCS = 3;

    /**
     * Construct a new Latin1Encoding.
     */
    public Latin1Encoding() throws UnsupportedEncodingException {
        super(DCS);
        setCharset("ISO-8859-1");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy