Codota Logo
SWRLDataPropertyAtomImpl.<init>
Code IndexAdd Codota to your IDE (free)

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

Best Java code snippets using uk.ac.manchester.cs.owl.owlapi.SWRLDataPropertyAtomImpl.<init> (Showing top 7 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-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-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-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: 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-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<init>

Popular methods of SWRLDataPropertyAtomImpl

  • getFirstArgument
  • getPredicate
  • getSecondArgument

Popular in Java

  • Start an intent from android
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Path (java.nio.file)
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • DataSource (javax.sql)
    A factory for connections to the physical data source that this DataSource object represents. An alt
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