Package com.esri.gpt.catalog.search

Examples of com.esri.gpt.catalog.search.SearchFilterSort


    // sort filter
    String sOrderBy = Val.chkStr(parser.getRequestParameter("orderBy"));
    try {
      if (sOrderBy.length() > 0) {
        SearchFilterSort fSort = new SearchFilterSort();
        fSort.setSelectedSort(SearchFilterSort.OptionsSort.valueOf(sOrderBy).name());
        criteria.setSearchFilterSort(fSort);
      }
    } catch (IllegalArgumentException ex) {
      // if invalid content type simply do not create filter
    }
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.search.SearchFilterSort

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.