Package org.teiid.language
Class WindowFunction
- java.lang.Object
-
- org.teiid.language.BaseLanguageObject
-
- org.teiid.language.WindowFunction
-
- All Implemented Interfaces:
Expression,LanguageObject
public class WindowFunction extends BaseLanguageObject implements Expression
-
-
Constructor Summary
Constructors Constructor Description WindowFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(LanguageObjectVisitor visitor)booleanequals(Object obj)AggregateFunctiongetFunction()Class<?>getType()Determine the type returned by this expression.WindowSpecificationgetWindowSpecification()inthashCode()voidsetFunction(AggregateFunction expression)voidsetWindowSpecification(WindowSpecification windowSpecification)-
Methods inherited from class org.teiid.language.BaseLanguageObject
toString
-
-
-
-
Method Detail
-
getFunction
public AggregateFunction getFunction()
-
setFunction
public void setFunction(AggregateFunction expression)
-
getWindowSpecification
public WindowSpecification getWindowSpecification()
-
setWindowSpecification
public void setWindowSpecification(WindowSpecification windowSpecification)
-
getType
public Class<?> getType()
Description copied from interface:ExpressionDetermine the type returned by this expression.- Specified by:
getTypein interfaceExpression- Returns:
- The type, as defined by a Java class
-
acceptVisitor
public void acceptVisitor(LanguageObjectVisitor visitor)
- Specified by:
acceptVisitorin interfaceLanguageObject
-
-