Package com.positive.charts.data.util

Examples of com.positive.charts.data.util.KeyedValueComparator


   *
   * @param order
   *            the sort order (<code>null</code> not permitted).
   */
  public void sortByKeys(final SortOrder order) {
    final Comparator comparator = new KeyedValueComparator(
        KeyedValueComparatorType.BY_KEY, order);
    Collections.sort(this.data, comparator);

    this.rebuildKey2Index();
  }
View Full Code Here


   *
   * @param order
   *            the sort order (<code>null</code> not permitted).
   */
  public void sortByValues(final SortOrder order) {
    final Comparator comparator = new KeyedValueComparator(
        KeyedValueComparatorType.BY_VALUE, order);
    Collections.sort(this.data, comparator);

    this.rebuildKey2Index();
  }
View Full Code Here

TOP

Related Classes of com.positive.charts.data.util.KeyedValueComparator

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.