- java.lang.Object
-
- net.sf.jsqlparser.expression.WindowDefinition
-
- All Implemented Interfaces:
Serializable
public class WindowDefinition extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WindowDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OrderByClausegetOrderBy()List<OrderByElement>getOrderByElements()PartitionByClausegetPartitionBy()ExpressionListgetPartitionExpressionList()WindowElementgetWindowElement()StringgetWindowName()voidsetOrderByElements(List<OrderByElement> orderByElements)voidsetPartitionExpressionList(ExpressionList partitionExpressionList)voidsetPartitionExpressionList(ExpressionList partitionExpressionList, boolean brackets)voidsetWindowElement(WindowElement windowElement)voidsetWindowName(String windowName)StringtoString()WindowDefinitionwithWindowName(String windowName)
-
-
-
Method Detail
-
getOrderBy
public OrderByClause getOrderBy()
-
getPartitionBy
public PartitionByClause getPartitionBy()
-
getWindowElement
public WindowElement getWindowElement()
-
setWindowElement
public void setWindowElement(WindowElement windowElement)
-
getOrderByElements
public List<OrderByElement> getOrderByElements()
-
setOrderByElements
public void setOrderByElements(List<OrderByElement> orderByElements)
-
getPartitionExpressionList
public ExpressionList getPartitionExpressionList()
-
setPartitionExpressionList
public void setPartitionExpressionList(ExpressionList partitionExpressionList)
-
setPartitionExpressionList
public void setPartitionExpressionList(ExpressionList partitionExpressionList, boolean brackets)
-
getWindowName
public String getWindowName()
-
setWindowName
public void setWindowName(String windowName)
-
withWindowName
public WindowDefinition withWindowName(String windowName)
-
-