Package com.crawl.model

Examples of com.crawl.model.PriceDistribution


       
        Collections.sort(list);
       
        Collection<PriceDistribution> aRetColl = new ArrayList<PriceDistribution>();
        for(int i = 0; i < list.size(); i++) {
            PriceDistribution aPriceDist = new PriceDistribution();
            String priceStr = String.valueOf(list.get(i));
            aPriceDist.setPriceString(priceStr);
            aPriceDist.setCount(Integer.parseInt(map.get(priceStr)));
            aRetColl.add(aPriceDist);
        }
       
        logger.debug("SIZE="+aRetColl.size());
            
View Full Code Here

TOP

Related Classes of com.crawl.model.PriceDistribution

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.