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

How to use
getAFun
method
in
openllet.aterm.ATermAppl

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

origin: Galigator/openllet

public static boolean isComplexClass(final ATerm c)
{
  if (c instanceof ATermAppl)
  {
    final ATermAppl a = (ATermAppl) c;
    final AFun f = a.getAFun();
    return CLASS_FUN.contains(f);
  }
  return false;
}
origin: Galigator/openllet

public static boolean isComplexClass(final ATerm c)
{
  if (c instanceof ATermAppl)
  {
    final ATermAppl a = (ATermAppl) c;
    final AFun f = a.getAFun();
    return CLASS_FUN.contains(f);
  }
  return false;
}
origin: Galigator/openllet

public final static boolean isAllValues(final ATermAppl a)
{
  return ALLFUN.equals(a.getAFun());
}
origin: Galigator/openllet

final static public boolean isAnonNominal(final ATermAppl term)
{
  return term.getAFun().equals(ANON_NOMINAL_FUN);
}
origin: Galigator/openllet

final static public boolean isRestrictedDatatype(final ATermAppl term)
{
  return term.getAFun().equals(RESTRDATATYPEFUN);
}
origin: Galigator/openllet

public final static boolean isSelf(final ATermAppl a)
{
  return SELFFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isLiteral(final ATermAppl a)
{
  return LITFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isPropertyAssertion(final ATermAppl a)
{
  return PROPFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isTypeAssertion(final ATermAppl a)
{
  return TYPEFUN.equals(a.getAFun());
}
origin: Galigator/openllet

final static public boolean isInv(final ATermAppl r)
{
  return INVFUN.equals(r.getAFun());
}
origin: Galigator/openllet

public final static boolean isNot(final ATermAppl a)
{
  return NOTFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isLiteral(final ATermAppl a)
{
  return LITFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isTypeAssertion(final ATermAppl a)
{
  return TYPEFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isAnd(final ATermAppl a)
{
  return ANDFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isOr(final ATermAppl a)
{
  return ORFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isSomeValues(final ATermAppl a)
{
  return SOMEFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public final static boolean isMax(final ATermAppl a)
{
  return MAXFUN.equals(a.getAFun());
}
origin: Galigator/openllet

public boolean isUnique(final ATermAppl axiom)
{
  return _eqClassAxioms.isEmpty() && (_subClassAxioms.isEmpty() || axiom.getAFun().equals(ATermUtils.SUBFUN));
}
origin: Galigator/openllet

public boolean isUnique(final ATermAppl axiom)
{
  return _eqClassAxioms.isEmpty() && (_subClassAxioms.isEmpty() || axiom.getAFun().equals(ATermUtils.SUBFUN));
}
origin: Galigator/openllet

public final static boolean isOneOf(final ATermAppl a)
{
  if (!ORFUN.equals(a.getAFun()))
    return false;
  ATermList list = (ATermList) a.getArgument(0);
  while (!list.isEmpty())
  {
    if (!isNominal((ATermAppl) list.getFirst()))
      return false;
    list = list.getNext();
  }
  return true;
}
openllet.atermATermApplgetAFun

Javadoc

Gets the AFun object that represents the function symbol of this application

Popular methods of ATermAppl

  • getArgument
  • getName
  • 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

  • Reactive rest calls using spring rest template
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • putExtra (Intent)
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top Vim 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