Codota Logo
OWLObject.components
Code IndexAdd Codota to your IDE (free)

How to use
components
method
in
org.semanticweb.owlapi.model.OWLObject

Best Java code snippets using org.semanticweb.owlapi.model.OWLObject.components (Showing top 8 results out of 315)

  • Common ways to obtain OWLObject
private void myMethod () {
OWLObject o =
  • Codota IconOWLObjectTreeNode parentNode;parentNode.getOWLObject()
  • Codota IconOWLObjectTree tree;tree.getSelectedOWLObject()
  • Codota IconOWLAnnotationAssertionAxiom oWLAnnotationAssertionAxiom;oWLAnnotationAssertionAxiom.getSubject()
  • Smart code suggestions by Codota
}
origin: net.sourceforge.owlapi/owlapi-impl

@Override
public int compareTo(@Nullable OWLObject o) {
  checkNotNull(o);
  assert o != null;
  int diff = Integer.compare(typeIndex(), o.typeIndex());
  if (diff != 0) {
    return diff;
  }
  return compareIterators(components().iterator(), o.components().iterator());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public int compareTo(@Nullable OWLObject o) {
  checkNotNull(o);
  assert o != null;
  int diff = Integer.compare(typeIndex(), o.typeIndex());
  if (diff != 0) {
    return diff;
  }
  return compareIterators(components().iterator(), o.components().iterator());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public int compareTo(@Nullable OWLObject o) {
  checkNotNull(o);
  assert o != null;
  int diff = Integer.compare(typeIndex(), o.typeIndex());
  if (diff != 0) {
    return diff;
  }
  return compareIterators(components().iterator(), o.components().iterator());
}
origin: owlcs/owlapi

@Override
public int compareTo(@Nullable OWLObject o) {
  checkNotNull(o);
  assert o != null;
  int diff = Integer.compare(typeIndex(), o.typeIndex());
  if (diff != 0) {
    return diff;
  }
  return compareIterators(components().iterator(), o.components().iterator());
}
origin: owlcs/owlapi

@Override
public boolean equals(@Nullable Object obj) {
  if (obj == this) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof OWLObject)) {
    return false;
  }
  OWLObject other = (OWLObject) obj;
  if (typeIndex() != other.typeIndex() || hashCode() != other.hashCode()) {
    return false;
  }
  return equalStreams(components(), other.components());
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public boolean equals(@Nullable Object obj) {
  if (obj == this) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof OWLObject)) {
    return false;
  }
  OWLObject other = (OWLObject) obj;
  if (typeIndex() != other.typeIndex() || hashCode() != other.hashCode()) {
    return false;
  }
  return equalStreams(components(), other.components());
}
origin: net.sourceforge.owlapi/owlapi-impl

@Override
public boolean equals(@Nullable Object obj) {
  if (obj == this) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof OWLObject)) {
    return false;
  }
  OWLObject other = (OWLObject) obj;
  if (typeIndex() != other.typeIndex() || hashCode() != other.hashCode()) {
    return false;
  }
  return equalStreams(components(), other.components());
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public boolean equals(@Nullable Object obj) {
  if (obj == this) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof OWLObject)) {
    return false;
  }
  OWLObject other = (OWLObject) obj;
  if (typeIndex() != other.typeIndex() || hashCode() != other.hashCode()) {
    return false;
  }
  return equalStreams(components(), other.components());
}
org.semanticweb.owlapi.modelOWLObjectcomponents

Popular methods of OWLObject

  • accept
    Accepts a visitor
  • compareTo
  • isTopEntity
    Determines if this object is either, owl:Thing (the top class), owl:topObjectProperty (the top objec
  • isBottomEntity
    Determines if this object is either, owl:Nothing (the bottom class), owl:bottomObjectProperty (the b
  • isIRI
  • hashIteration
    Iteration for hash codes
  • signature
  • datatypesInSignature
  • hasSharedStructure
  • isAnonymous
  • isAnonymousExpression
  • isAxiom
  • isAnonymousExpression,
  • isAxiom,
  • isIndividual,
  • isOntology,
  • nestedClassExpressions,
  • toString,
  • typeIndex,
  • classesInSignature,
  • dataPropertiesInSignature

Popular in Java

  • Reading from database using SQL prepared statement
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • InetAddress (java.net)
    This class represents an Internet Protocol (IP) address. An IP address is either a 32-bit or 128-bit
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now