Package com.ericsson.otp.erlang

Examples of com.ericsson.otp.erlang.OtpErlangMap.keys()


            }
            if (Map.class.isAssignableFrom(cls)) {
                if (obj instanceof OtpErlangMap) {
                    final Map<Object, Object> result = Maps.newHashMap();
                    final OtpErlangMap map = (OtpErlangMap) obj;
                    for (final OtpErlangObject key : map.keys()) {
                        final OtpErlangObject value = map.get(key);
                        result.put(erlang2java(key, key.getClass()),
                                erlang2java(value, value.getClass()));
                    }
                    return result;
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.