Package com.cognitect.transit

Examples of com.cognitect.transit.Ratio


            return "ratio";
        }

        @Override
        public Object rep(Object o) {
            Ratio r = (Ratio)o;
            BigInteger[] l = {r.getNumerator(), r.getDenominator()};
            return TransitFactory.taggedValue("array", l);
        }
View Full Code Here

TOP

Related Classes of com.cognitect.transit.Ratio

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.