Package org.locationtech.geogig.api.RevObject

Examples of org.locationtech.geogig.api.RevObject.TYPE


        return feature(i, ObjectId.forString(String.valueOf(i)));
    }

    private Node feature(int i, ObjectId oid) {
        String name = String.valueOf(i);
        TYPE type = TYPE.FEATURE;
        Envelope bounds = new Envelope(i, i, i, i);
        return Node.create(name, oid, metadataId, type, bounds);
    }
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.api.RevObject.TYPE

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.