Tabnine Logo
OWLClassAssertionAxiom.annotationsAsList
Code IndexAdd Tabnine to your IDE (free)

How to use
annotationsAsList
method
in
org.semanticweb.owlapi.model.OWLClassAssertionAxiom

Best Java code snippets using org.semanticweb.owlapi.model.OWLClassAssertionAxiom.annotationsAsList (Showing top 9 results out of 315)

origin: owlcs/owlapi

@Override
default Stream<?> components() {
  return Stream.of(getIndividual(), getClassExpression(), annotationsAsList());
}
origin: owlcs/owlapi

@Override
default Stream<?> componentsAnnotationsFirst() {
  return Stream.of(annotationsAsList(), getIndividual(), getClassExpression());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
default Stream<?> components() {
  return Stream.of(getIndividual(), getClassExpression(), annotationsAsList());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
default Stream<?> componentsAnnotationsFirst() {
  return Stream.of(annotationsAsList(), getIndividual(), getClassExpression());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
default Stream<?> components() {
  return Stream.of(getIndividual(), getClassExpression(), annotationsAsList());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
default Stream<?> componentsAnnotationsFirst() {
  return Stream.of(annotationsAsList(), getIndividual(), getClassExpression());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
default int initHashCode() {
  int hash = hashIndex();
  hash = OWLObject.hashIteration(hash, getIndividual().hashCode());
  hash = OWLObject.hashIteration(hash, getClassExpression().hashCode());
  return OWLObject.hashIteration(hash, annotationsAsList().hashCode());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
default int initHashCode() {
  int hash = hashIndex();
  hash = OWLObject.hashIteration(hash, getIndividual().hashCode());
  hash = OWLObject.hashIteration(hash, getClassExpression().hashCode());
  return OWLObject.hashIteration(hash, annotationsAsList().hashCode());
}
origin: owlcs/owlapi

@Override
default int initHashCode() {
  int hash = hashIndex();
  hash = OWLObject.hashIteration(hash, getIndividual().hashCode());
  hash = OWLObject.hashIteration(hash, getClassExpression().hashCode());
  return OWLObject.hashIteration(hash, annotationsAsList().hashCode());
}
org.semanticweb.owlapi.modelOWLClassAssertionAxiomannotationsAsList

Popular methods of OWLClassAssertionAxiom

  • getClassExpression
    Gets the class expression that is asserted to be a type for an individual by this axiom.
  • getIndividual
    Gets the individual that is asserted to be an instance of a class expression by this axiom.
  • annotations
  • accept
  • getAnnotations
  • getAxiomType
  • hashIndex
  • asOWLSubClassOfAxiom

Popular in Java

  • Reading from database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Join (org.hibernate.mapping)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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