Codota Logo
SWRLDataPropertyAtomImpl
Code IndexAdd Codota to your IDE (free)

How to use
SWRLDataPropertyAtomImpl
in
uk.ac.manchester.cs.owl.owlapi

Best Java code snippets using uk.ac.manchester.cs.owl.owlapi.SWRLDataPropertyAtomImpl (Showing top 10 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: net.sourceforge.owlapi/owlapi

/**
 * Gets a SWRL data property atom, i.e. R(x, y) where R is an OWL data
 * property (expression) and x and y are are either a constant or
 * a d-variable.
 *
 * @param property The property (P)
 * @param arg0 The first argument (x)
 * @param arg1 The second argument (y)
 */
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(OWLDataPropertyExpression property, SWRLIArgument arg0, SWRLDArgument arg1) {
  return new SWRLDataPropertyAtomImpl(this, property, arg0, arg1);
}
origin: net.sourceforge.owlapi/owlapi-gwt-supersource

  @Override
  public boolean equals(Object obj) {
    if (obj == this) {
      return true;
    }
    if (!(obj instanceof SWRLDataPropertyAtom)) {
      return false;
    }
    SWRLDataPropertyAtom other = (SWRLDataPropertyAtom) obj;
    return other.getPredicate().equals(getPredicate()) && other.getFirstArgument().equals(getFirstArgument()) && other.getSecondArgument().equals(getSecondArgument());
  }
}
origin: net.sourceforge.owlapi/owlapi-gwt-client-side-emul

@Nonnull
@Override
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(
  OWLDataPropertyExpression property, SWRLIArgument arg0,
  SWRLDArgument arg1) {
  checkNotNull(property, "property cannot be null");
  checkNotNull(arg0, "arg0 cannot be null");
  checkNotNull(arg1, "arg1 cannot be null");
  return new SWRLDataPropertyAtomImpl(property, arg0, arg1);
}
origin: net.sourceforge.owlapi/owlapi

  public boolean equals(Object obj) {
    if(obj == this) {
      return true;
    }
      if(!(obj instanceof SWRLDataPropertyAtom)) {
        return false;
      }
      SWRLDataPropertyAtom other = (SWRLDataPropertyAtom) obj;
      return other.getPredicate().equals(getPredicate()) &&
          other.getFirstArgument().equals(getFirstArgument()) &&
          other.getSecondArgument().equals(getSecondArgument());
  }
}
origin: net.sourceforge.owlapi/owlapi-impl

@Override
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(OWLDataPropertyExpression property,
  SWRLIArgument arg0, SWRLDArgument arg1) {
  checkNotNull(property, PROPERTY_CANNOT_BE_NULL);
  checkNotNull(arg0, ARG0_CANNOT_BE_NULL);
  checkNotNull(arg1, ARG1_CANNOT_BE_NULL);
  return new SWRLDataPropertyAtomImpl(property, arg0, arg1);
}
origin: net.sourceforge.owlapi/owlapi-gwt-client-side-emul

  @Override
  public boolean equals(Object obj) {
    if (obj == this) {
      return true;
    }
    if (!(obj instanceof SWRLDataPropertyAtom)) {
      return false;
    }
    SWRLDataPropertyAtom other = (SWRLDataPropertyAtom) obj;
    return other.getPredicate().equals(getPredicate())
        && other.getFirstArgument().equals(getFirstArgument())
        && other.getSecondArgument().equals(getSecondArgument());
  }
}
origin: owlcs/owlapi

@Override
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(OWLDataPropertyExpression property,
  SWRLIArgument arg0, SWRLDArgument arg1) {
  checkNotNull(property, PROPERTY_CANNOT_BE_NULL);
  checkNotNull(arg0, ARG0_CANNOT_BE_NULL);
  checkNotNull(arg1, ARG1_CANNOT_BE_NULL);
  return new SWRLDataPropertyAtomImpl(property, arg0, arg1);
}
origin: net.sourceforge.owlapi/owlapi-distribution

@Override
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(OWLDataPropertyExpression property,
  SWRLIArgument arg0, SWRLDArgument arg1) {
  checkNotNull(property, PROPERTY_CANNOT_BE_NULL);
  checkNotNull(arg0, ARG0_CANNOT_BE_NULL);
  checkNotNull(arg1, ARG1_CANNOT_BE_NULL);
  return new SWRLDataPropertyAtomImpl(property, arg0, arg1);
}
origin: net.sourceforge.owlapi/owlapi-gwt-supersource

@Override
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(OWLDataPropertyExpression property, SWRLIArgument arg0, SWRLDArgument arg1) {
  checkNull(property, "property");
  checkNull(arg0, "arg0");
  checkNull(arg1, "arg1");
  return new SWRLDataPropertyAtomImpl(property, arg0, arg1);
}
origin: net.sourceforge.owlapi/owlapi-osgidistribution

@Override
public SWRLDataPropertyAtom getSWRLDataPropertyAtom(OWLDataPropertyExpression property,
  SWRLIArgument arg0, SWRLDArgument arg1) {
  checkNotNull(property, PROPERTY_CANNOT_BE_NULL);
  checkNotNull(arg0, ARG0_CANNOT_BE_NULL);
  checkNotNull(arg1, ARG1_CANNOT_BE_NULL);
  return new SWRLDataPropertyAtomImpl(property, arg0, arg1);
}
uk.ac.manchester.cs.owl.owlapiSWRLDataPropertyAtomImpl

Most used methods

  • <init>
  • getFirstArgument
  • getPredicate
  • getSecondArgument

Popular in Java

  • Reading from database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • JLabel (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
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