Package org.geoserver.monitor.MonitorQuery

Examples of org.geoserver.monitor.MonitorQuery.SortOrder


                from != null ? Converters.convert(from, Date.class) : null,
                to != null ? Converters.convert(to, Date.class) : null);
           
            //sorting
            String sortBy;
            SortOrder sortOrder;
           
            String order = form.getFirstValue("order");
            if (order != null) {
                int semi = order.indexOf(';');
                if (semi != -1) {
View Full Code Here

TOP

Related Classes of org.geoserver.monitor.MonitorQuery.SortOrder

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.