Package jsky.catalog

Examples of jsky.catalog.RangeSearchCondition


        } else {
            // look for a radius search condition
            for (SearchCondition aSc : sc) {
                String name = aSc.getName();
                if (name.equalsIgnoreCase("radius") && aSc instanceof RangeSearchCondition) {
                    RangeSearchCondition rsc = (RangeSearchCondition) aSc;
                    r1 = (Double) rsc.getMinVal();
                    r2 = (Double) rsc.getMaxVal();
                    break;
                }
            }
        }
        if (r1 == null && r2 == null) {
View Full Code Here

TOP

Related Classes of jsky.catalog.RangeSearchCondition

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.