Package org.deri.grefine.rdf.ResourceNode

Examples of org.deri.grefine.rdf.ResourceNode.RdfType


        JSONArray arr = o.getJSONArray("rdfTypes");
        List<RdfType> types = new ArrayList<RdfType>();
            for (int i = 0; i < arr.length(); i++) {
                String uri = arr.getJSONObject(i).getString("uri");
                String curie = arr.getJSONObject(i).getString("curie");
                types.add(new RdfType(uri, curie));
            }           
            node.setTypes(types);
        }
    }
View Full Code Here

TOP

Related Classes of org.deri.grefine.rdf.ResourceNode.RdfType

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.