Examples of asDatatypeProperty()


Examples of com.hp.hpl.jena.ontology.OntProperty.asDatatypeProperty()

      if (ontProperty != null) {
        if (ontProperty.getDomain() == null
            || ontProperty.getDomain() == OWL.Thing)
          continue;
        if (ontProperty.isDatatypeProperty())
          list.add(ontProperty.asDatatypeProperty());
      }
    }
    // Then get the properties binded with "union classes" that contains
    // this concept/class.
    Iterator unionClasses = ontClass.getOntModel().listUnionClasses();
View Full Code Here

Examples of com.hp.hpl.jena.ontology.OntProperty.asDatatypeProperty()

              if (ontProperty.getDomain() == null
                  || ontProperty.getDomain() == OWL.Thing)
                continue;

              if (ontProperty.isDatatypeProperty())
                list.add(ontProperty.asDatatypeProperty());
            }
          }

        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.