Package org.teiid.query.sql.symbol
Class WindowSpecification
- java.lang.Object
-
- org.teiid.query.sql.symbol.WindowSpecification
-
- All Implemented Interfaces:
Cloneable
,LanguageObject
public class WindowSpecification extends Object implements LanguageObject
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.teiid.query.sql.LanguageObject
LanguageObject.Util
-
-
Constructor Summary
Constructors Constructor Description WindowSpecification()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
acceptVisitor(LanguageVisitor visitor)
Method for accepting a visitor.WindowSpecification
clone()
Implement clone to make objects cloneable.boolean
equals(Object obj)
OrderBy
getOrderBy()
List<Expression>
getPartition()
WindowFrame
getWindowFrame()
int
hashCode()
void
setOrderBy(OrderBy orderBy)
void
setPartition(List<Expression> grouping)
void
setWindowFrame(WindowFrame frame)
String
toString()
-
-
-
Method Detail
-
getPartition
public List<Expression> getPartition()
-
setPartition
public void setPartition(List<Expression> grouping)
-
getOrderBy
public OrderBy getOrderBy()
-
setOrderBy
public void setOrderBy(OrderBy orderBy)
-
getWindowFrame
public WindowFrame getWindowFrame()
-
setWindowFrame
public void setWindowFrame(WindowFrame frame)
-
acceptVisitor
public void acceptVisitor(LanguageVisitor visitor)
Description copied from interface:LanguageObject
Method for accepting a visitor. It is the responsibility of the language object to call back on the visitor.- Specified by:
acceptVisitor
in interfaceLanguageObject
- Parameters:
visitor
- Visitor being used
-
clone
public WindowSpecification clone()
Description copied from interface:LanguageObject
Implement clone to make objects cloneable.- Specified by:
clone
in interfaceLanguageObject
- Overrides:
clone
in classObject
- Returns:
- Deep clone of this object
-
-