Package ie.omk.smpp.util

Examples of ie.omk.smpp.util.ASCIIEncoding


    int dataCoding = configuration.getDataCoding();

    if (dataCoding == 0) {
      return new DefaultAlphabetEncoding();
    } else if (dataCoding == 1) {
      return new ASCIIEncoding();
    } else if (dataCoding == 3) {
      return new Latin1Encoding();
    } else if (dataCoding == 8) {
      return new UCS2Encoding();
    }
View Full Code Here

TOP

Related Classes of ie.omk.smpp.util.ASCIIEncoding

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.