Package org.boco.seamUtility.comparator

Examples of org.boco.seamUtility.comparator.GenericFieldComparator


   */
  public static List orderBy(List asseList, String field, GenericFieldComparator.OrderType orderType)
  {
    Object tmp[] = asseList.toArray();

    java.util.Arrays.sort(tmp, new GenericFieldComparator(field, orderType));

    return new Vector(java.util.Arrays.asList(tmp));
  }
View Full Code Here

TOP

Related Classes of org.boco.seamUtility.comparator.GenericFieldComparator

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.