Package entagged.listing.statistics.Statistic

Examples of entagged.listing.statistics.Statistic.StringCountRecord


     */
    public int compare(Object o1, Object o2) {
      int result = 0;
      if (o1 instanceof StringCountRecord
          && o2 instanceof StringCountRecord) {
        StringCountRecord sc1 = (StringCountRecord) o1;
        StringCountRecord sc2 = (StringCountRecord) o2;
        result = new Integer(sc1.getString()).compareTo(new Integer(sc2
            .getString()));
      }
      return result;
    }
View Full Code Here

TOP

Related Classes of entagged.listing.statistics.Statistic.StringCountRecord

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.