All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.pdok.shapeprocessing.data.shapes.FeatureToTableMapping Maven / Gradle / Ivy

The newest version!
package nl.pdok.shapeprocessing.data.shapes;

import java.util.HashMap;
import java.util.Map;

public class FeatureToTableMapping {
    private Map featureToTables;
    private Map attributes;

    public Map getFeatureToTables() {
        return this.featureToTables;
    }

    public void setFeatureToTables(Map featureToTables) {
        this.featureToTables = featureToTables;
    }

    public Map getAttributes() {
        return this.attributes;
    }

    public void setAttributes(Map attributes) {
        this.attributes = attributes;
    }

    public FeatureToTableMapping() {
        this.setFeatureToTables(new HashMap());
        this.setAttributes(new HashMap());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy