![JAR search and dependency download from the Maven repository](/logo.png)
ie.omk.smpp.util.Latin1Encoding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smppapi Show documentation
Show all versions of smppapi Show documentation
Java Implementation of the Short Message Peer to Peer API.
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