Uses of Class
de.unidu.is.expressions.AbstractExpression

Packages that use AbstractExpression
de.unidu.is.expressions Provides classes for arbitrary expressions. 
de.unidu.is.pdatalog.ds Provides data structures for the pDatalog++ inference engine. 
de.unidu.is.sql Provides classes for abstract SQL statements. 
 

Uses of AbstractExpression in de.unidu.is.expressions
 

Subclasses of AbstractExpression in de.unidu.is.expressions
 class Arg2Expression
          An expression with an operator and two arguments, e.g. the sum of two expressions.
 class ArgNExpression
          An expression with an operator and a list of arguments, e.g. the sum of expressions.
 class BinaryStandardFunctionExpression
          An expression for binary functions without preceding ampersend.
 class DifferenceExpression
          An expression for the difference of two arguments, eg. arg1-arg2.
 class EqualsExpression
          An expression for the testing if two arguments are equal, eg. arg1=arg2.
 class FractionExpression
          An expression for the fraction of two arguments, eg. arg1/arg2.
 class FunctionExpression
          An expression for functions.
 class PlainExpression
          An expression for plain content.
 class ProductExpression
          An expression for the product of two arguments, eg. arg1*arg2.
 class ProductNExpression
          An expression for the product of a list of arguments, i.e.
 class Str2NumFunctionExpression
          An expression for the str2num function.
 class StringExpression
          An expression for a string, enclosed in single quotes.
 class SumExpression
          An expression for the sum of two arguments, eg. arg1+arg2.
 class SumNExpression
          An expression for the sum of a list of arguments, i.e.
 class VariableExpression
          An expression for a variable.
 

Uses of AbstractExpression in de.unidu.is.pdatalog.ds
 

Subclasses of AbstractExpression in de.unidu.is.pdatalog.ds
 class Constant
          A pDatalog++ constant.
 class DBColExpression
          An expression representing an argument column in a relational table.
 class DBProbExpression
          An expression representing the column for the fact probabilities in a relational table.
 class LiteralExpression
          An expression holding a literal, used for aggregation operators.
 class ProbExpression
          The expression representing the overall probability of facts derived by the single, obtained by the independence assumption.
 class Variable
          A pDatalog++ variable.
 

Uses of AbstractExpression in de.unidu.is.sql
 

Subclasses of AbstractExpression in de.unidu.is.sql
 class DBColumnExpression
          An expression with encoding a table column, specified by the table and the column name.