Class InternalFunction
- java.lang.Object
-
- com.feedzai.commons.sql.abstraction.dml.Expression
-
- com.feedzai.commons.sql.abstraction.dml.Function
-
- com.feedzai.commons.sql.abstraction.dml.InternalFunction
-
- All Implemented Interfaces:
Serializable
public class InternalFunction extends Function
Represents functions that are internal to the database engine in place.- Since:
- 2.0.1
- Author:
- Rui Vilao (rui.vilao@feedzai.com)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.feedzai.commons.sql.abstraction.dml.Function
AVG, CEILING, COUNT, FLOOR, FUNCTIONS, LOWER, MAX, MIN, STDDEV, SUM, UPPER
-
Fields inherited from class com.feedzai.commons.sql.abstraction.dml.Expression
alias, enclosed, joins, ordering, properties, quotes, translator, withNoLock
-
-
Constructor Summary
Constructors Constructor Description InternalFunction(String function)Creates a new instance ofInternalFunction.InternalFunction(String function, Expression exp)Creates a new instance ofInternalFunction.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisUDF()Checks if this function is a UDF.-
Methods inherited from class com.feedzai.commons.sql.abstraction.dml.Function
getExp, getFunction, translate
-
Methods inherited from class com.feedzai.commons.sql.abstraction.dml.Expression
alias, asc, desc, enclose, fullOuterJoin, getAlias, getJoins, getOrdering, innerJoin, isAliased, isEnclosed, isQuote, isQuotes, isWithNoLock, leftOuterJoin, rightOuterJoin, unquote, withNoLock
-
-
-
-
Constructor Detail
-
InternalFunction
public InternalFunction(String function)
Creates a new instance ofInternalFunction.- Parameters:
function- The function.
-
InternalFunction
public InternalFunction(String function, Expression exp)
Creates a new instance ofInternalFunction.- Parameters:
function- The function.exp- The expression.
-
-