Package com.ericsson.otp.erlang

Examples of com.ericsson.otp.erlang.OtpErlangLong.charValue()


            return sb;
        }
        if (o instanceof OtpErlangLong) {
            final OtpErlangLong l = (OtpErlangLong) o;
            try {
                sb.append(l.charValue());
            } catch (final OtpErlangRangeException e) {
            }
        } else if (o instanceof OtpErlangString) {
            final OtpErlangString s = (OtpErlangString) o;
            sb.append(s.stringValue());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.