congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
OWLDataFactory.getRDFSComment
Code IndexAdd Tabnine to your IDE (free)

How to use
getRDFSComment
method
in
org.semanticweb.owlapi.model.OWLDataFactory

Best Java code snippets using org.semanticweb.owlapi.model.OWLDataFactory.getRDFSComment (Showing top 20 results out of 315)

origin: net.sourceforge.owlapi/owlapi-osgidistribution

public static OWLAnnotationProperty RDFSComment() {
  return DF.getRDFSComment();
}
origin: owlcs/owlapi

public static OWLAnnotationProperty RDFSComment() {
  return DF.getRDFSComment();
}
origin: net.sourceforge.owlapi/owlapi-distribution

public static OWLAnnotationProperty RDFSComment() {
  return DF.getRDFSComment();
}
origin: net.sourceforge.owlapi/owlapi-apibinding

public static OWLAnnotationProperty RDFSComment() {
  return DF.getRDFSComment();
}
origin: owlcs/owlapi

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value))}
 *
 * @param value The annotation value.
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(OWLAnnotationValue value) {
  return getOWLAnnotation(getRDFSComment(), value);
}
origin: net.sourceforge.owlapi/owlapi-distribution

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value))}
 *
 * @param value The annotation value.
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(OWLAnnotationValue value) {
  return getOWLAnnotation(getRDFSComment(), value);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value))}
 *
 * @param value The annotation value.
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(OWLAnnotationValue value) {
  return getOWLAnnotation(getRDFSComment(), value);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

  /**
   * Shorthand for
   * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations)}
   *
   * @param value The annotation value.
   * @param annotations annotations
   * @return an rdfs:comment annotation with provided value
   */
  default OWLAnnotation getRDFSComment(OWLAnnotationValue value,
    Stream<OWLAnnotation> annotations) {
    return getOWLAnnotation(getRDFSComment(), value, annotations);
  }
}
origin: owlcs/owlapi

  /**
   * Shorthand for
   * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations)}
   *
   * @param value The annotation value.
   * @param annotations annotations
   * @return an rdfs:comment annotation with provided value
   */
  default OWLAnnotation getRDFSComment(OWLAnnotationValue value,
    Stream<OWLAnnotation> annotations) {
    return getOWLAnnotation(getRDFSComment(), value, annotations);
  }
}
origin: net.sourceforge.owlapi/owlapi-distribution

  /**
   * Shorthand for
   * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations)}
   *
   * @param value The annotation value.
   * @param annotations annotations
   * @return an rdfs:comment annotation with provided value
   */
  default OWLAnnotation getRDFSComment(OWLAnnotationValue value,
    Stream<OWLAnnotation> annotations) {
    return getOWLAnnotation(getRDFSComment(), value, annotations);
  }
}
origin: owlcs/owlapi

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value))}
 *
 * @param value The annotation value.
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(String value) {
  return getOWLAnnotation(getRDFSComment(), getOWLLiteral(value));
}
origin: net.sourceforge.owlapi/owlapi-distribution

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value))}
 *
 * @param value The annotation value.
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(String value) {
  return getOWLAnnotation(getRDFSComment(), getOWLLiteral(value));
}
origin: net.sourceforge.owlapi/owlapi-distribution

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations)}
 *
 * @param value The annotation value.
 * @param annotations annotations
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(String value, Stream<OWLAnnotation> annotations) {
  return getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations)}
 *
 * @param value The annotation value.
 * @param annotations annotations
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(String value, Stream<OWLAnnotation> annotations) {
  return getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations);
}
origin: owlcs/owlapi

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations)}
 *
 * @param value The annotation value.
 * @param annotations annotations
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(String value, Stream<OWLAnnotation> annotations) {
  return getOWLAnnotation(getRDFSComment(), getOWLLiteral(value), annotations);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

/**
 * Shorthand for
 * {@code getOWLAnnotation(getRDFSComment(), getOWLLiteral(value))}
 *
 * @param value The annotation value.
 * @return an rdfs:comment annotation with provided value
 */
default OWLAnnotation getRDFSComment(String value) {
  return getOWLAnnotation(getRDFSComment(), getOWLLiteral(value));
}
origin: owlcs/owlapi

xrefDescriptions.add(df.getRDFSComment(xrefQuotedString));
origin: net.sourceforge.owlapi/owlapi-osgidistribution

xrefDescriptions.add(df.getRDFSComment(xrefQuotedString));
origin: com.github.ansell.owlapi/owlapi-parsers

if (xrefQuotedString != null) {
  xrefDescriptions = new HashSet<OWLAnnotation>();
  xrefDescriptions.add(df.getOWLAnnotation(df.getRDFSComment(), df.getOWLLiteral(xrefQuotedString)));
origin: protegeproject/swrlapi

@NonNull public Set<@NonNull OWLAnnotation> generateRuleAnnotations(@NonNull String ruleName, @NonNull String comment,
 boolean isRuleEnabled)
{
 OWLAnnotation labelAnnotation = getOWLDataFactory()
  .getOWLAnnotation(getOWLDataFactory().getRDFSLabel(), getOWLDataFactory().getOWLLiteral(ruleName));
 OWLAnnotation commentAnnotation = getOWLDataFactory()
  .getOWLAnnotation(getOWLDataFactory().getRDFSComment(), getOWLDataFactory().getOWLLiteral(comment));
 OWLAnnotationProperty isRuleEnabledAnnotationProperty = getOWLDataFactory()
  .getOWLAnnotationProperty(IRI.create("http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled"));
 OWLAnnotation isRuleEnabledAnnotation = getOWLDataFactory()
  .getOWLAnnotation(isRuleEnabledAnnotationProperty, getOWLDataFactory().getOWLLiteral(isRuleEnabled));
 Set<@NonNull OWLAnnotation> annotations = new HashSet<>();
 annotations.add(labelAnnotation);
 annotations.add(commentAnnotation);
 annotations.add(isRuleEnabledAnnotation);
 return annotations;
}
org.semanticweb.owlapi.modelOWLDataFactorygetRDFSComment

Javadoc

Gets an annotation property that has an IRI corresponding to rdfs:comment.

Popular methods of OWLDataFactory

  • getOWLClass
    Gets an OWL class that has the specified IRI
  • getOWLNamedIndividual
    Gets an OWL individual that has the specified IRI
  • getOWLObjectProperty
    Gets an OWL object property that has the specified IRI
  • getOWLSubClassOfAxiom
  • getOWLClassAssertionAxiom
  • getOWLDataProperty
    Gets an OWL data property that has the specified IRI
  • getOWLThing
    Gets the built in owl:Thing class, which has a URI of
  • getOWLAnnotationProperty
    Gets an OWLAnnotationProperty that has the specified IRI
  • getOWLLiteral
    Convenience method that obtains a literal typed as a boolean.
  • getOWLDeclarationAxiom
    Gets a declaration with zero or more annotations for an entity
  • getOWLObjectIntersectionOf
  • getOWLEquivalentClassesAxiom
  • getOWLObjectIntersectionOf,
  • getOWLEquivalentClassesAxiom,
  • getOWLObjectSomeValuesFrom,
  • getOWLNothing,
  • getOWLObjectComplementOf,
  • getOWLObjectPropertyAssertionAxiom,
  • getOWLAnnotationAssertionAxiom,
  • getOWLDataPropertyAssertionAxiom,
  • getOWLDatatype,
  • getOWLAnnotation

Popular in Java

  • Running tasks concurrently on multiple threads
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Path (java.nio.file)
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now