Package com.socrata.datasync.config.controlfile

Examples of com.socrata.datasync.config.controlfile.LocationColumn


        if (schema == null || fileControl == null || !fileControl.hasSyntheticLocations()) return JobStatus.VALID;

        Map<String, LocationColumn> syntheticLocations = fileControl.syntheticLocations;
        for (String field : syntheticLocations.keySet()) {     // O(N) N = 1,2 (small, probably)
            LocationColumn location = syntheticLocations.get(field);
            String[] locationComponents = new String[]{location.address, location.city,
                    location.state, location.zip, location.latitude, location.longitude};
            boolean locationInFile = false;
            boolean[] componentsInFile = new boolean[]{location.address == null, location.city == null,
                    location.state == null, location.zip == null, location.latitude == null, location.longitude == null};
View Full Code Here

TOP

Related Classes of com.socrata.datasync.config.controlfile.LocationColumn

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.