Tabnine Logo
ATermAppl.getName
Code IndexAdd Tabnine to your IDE (free)

How to use
getName
method
in
openllet.aterm.ATermAppl

Best Java code snippets using openllet.aterm.ATermAppl.getName (Showing top 20 results out of 315)

origin: Galigator/openllet

/**
 * To string
 */
@Override
public String toString()
{
  return _node.getName() + "[" + _label + "]";
}
origin: Galigator/openllet

@Override
public String toString()
{
  return _name.getName();
}
origin: Galigator/openllet

/**
 * To string
 */
@Override
public String toString()
{
  return _node.getName() + "[" + _label + "]";
}
origin: Galigator/openllet

@Override
public String toString()
{
  return _name.getName();
}
origin: Galigator/openllet

@Override
public String toString()
{
  return _name.getName();
}
origin: Galigator/openllet

public UnrecognizedDatatypeException(final ATermAppl dt)
{
  super("Unrecognized datatype " + dt.getName());
  _dt = dt;
}
origin: Galigator/openllet

public UnrecognizedDatatypeException(final ATermAppl dt)
{
  super("Unrecognized datatype " + dt.getName());
  _dt = dt;
}
origin: Galigator/openllet

@Override
public String toString()
{
  return _name.getName();
}
origin: Galigator/openllet

public InvalidLiteralException(final ATermAppl dt, final String value)
{
  super(format("'%s' is not in the lexical space of datatype %s", value, dt.getName()));
  _dt = dt;
  _value = value;
}
origin: Galigator/openllet

  @Override
  public void visitTerm(final ATermAppl term)
  {
    _out.print(URIUtils.getLocalName(term.getName()));
  }
}
origin: com.github.galigator.openllet/openllet-owlapi

private static IRI iri(final ATermAppl term)
{
  if (term.getArity() != 0)
    throw new OWLRuntimeException("Trying to convert an anonymous term " + term);
  return IRI.create(term.getName());
}
origin: Galigator/openllet

private static IRI iri(final ATermAppl term)
{
  if (term.getArity() != 0)
    throw new OWLRuntimeException("Trying to convert an anonymous term " + term);
  return IRI.create(term.getName());
}
origin: Galigator/openllet

private static IRI iri(final ATermAppl term)
{
  if (term.getArity() != 0)
    throw new OWLRuntimeException("Trying to convert an anonymous term " + term);
  return IRI.create(term.getName());
}
origin: Galigator/openllet

private static OWLNamedIndividual termToOWLNamedIndividual(final ATermAppl c, final OWLDataFactory factory)
{
  if (!ATermUtils.isBnode(c))
    return factory.getOWLNamedIndividual(IRI.create(c.getName()));
  return null;
}
origin: Galigator/openllet

private static OWLNamedIndividual termToOWLNamedIndividual(final ATermAppl c, final OWLDataFactory factory)
{
  if (!ATermUtils.isBnode(c))
    return factory.getOWLNamedIndividual(IRI.create(c.getName()));
  return null;
}
origin: Galigator/openllet

@Override
public String toString()
{
  return URIUtils.getLocalName(getPredicate().getName()) + "(" + getArgument1() + "," + getArgument2() + ")";
}
origin: Galigator/openllet

  @Override
  public String toString()
  {
    return URIUtils.getLocalName(getPredicate().getName()) + "(" + getArgument1() + "," + getArgument2() + ")";
  }
}
origin: Galigator/openllet

private static AtomDObject convertAtomDObject(final ATermAppl t)
{
  if (ATermUtils.isVar(t))
    return new AtomDVariable(((ATermAppl) t.getArgument(0)).getName());
  else
    if (ATermUtils.isLiteral(t))
      return new AtomDConstant(t);
  throw new InternalReasonerException("Unrecognized term: " + t);
}
origin: com.github.galigator.openllet/openllet-owlapi

private SWRLIArgument parseToAtomIObject(final ATermAppl t)
{
  if (ATermUtils.isVar(t))
    return _factory.getSWRLVariable(IRI.create(((ATermAppl) t.getArgument(0)).getName()));
  if (_kb.isIndividual(t))
    return _factory.getSWRLIndividualArgument(_conceptConverter.convertIndividual(t));
  throw new InternalReasonerException("Unrecognized term: " + t);
}
origin: com.github.galigator.openllet/openllet-owlapi

  private SWRLDArgument parseToAtomDObject(final ATermAppl t)
  {
    if (ATermUtils.isVar(t))
      return _factory.getSWRLVariable(IRI.create(((ATermAppl) t.getArgument(0)).getName()));
    else
      if (ATermUtils.isLiteral(t))
        return _factory.getSWRLLiteralArgument((OWLLiteral) _conceptConverter.convert(t));

    throw new InternalReasonerException("Unrecognized term: " + t);
  }
}
openllet.atermATermApplgetName

Javadoc

Gets the function name of this application.

Popular methods of ATermAppl

  • getArgument
  • getAFun
  • getArity
  • getArgumentArray
    Gets the arguments of this application as an array of ATerm objects.
  • getChildAt
  • getArguments
    Gets the arguments of this application.
  • getType
  • isEqual
  • isQuoted
    Checks if this application is quoted. A quoted application looks like this: "foo", whereas an unquot
  • setArgument
    Sets a specific argument of this application.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • getSystemService (Context)
  • setContentView (Activity)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • String (java.lang)
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • JCheckBox (javax.swing)
  • Top PhpStorm plugins
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