Package com.alibaba.druid.sql.ast
Class SQLSubPartition
- java.lang.Object
-
- com.alibaba.druid.sql.ast.SQLObjectImpl
-
- com.alibaba.druid.sql.dialect.oracle.ast.OracleSegmentAttributesImpl
-
- com.alibaba.druid.sql.ast.SQLSubPartition
-
- All Implemented Interfaces:
SQLObject,OracleSegmentAttributes
public class SQLSubPartition extends OracleSegmentAttributesImpl
-
-
Field Summary
Fields Modifier and Type Field Description protected SQLExprcommentprotected SQLExprdataDirectoryprotected SQLExprengineprotected SQLExprindexDirectoryprotected SQLExprmaxRowsprotected SQLExprminRowsprotected SQLNamenameprotected SQLNametableSpaceprotected SQLPartitionValuevalues-
Fields inherited from class com.alibaba.druid.sql.dialect.oracle.ast.OracleSegmentAttributesImpl
storage, tablespace
-
Fields inherited from class com.alibaba.druid.sql.ast.SQLObjectImpl
attributes, hint, parent, sourceColumn, sourceLine
-
-
Constructor Summary
Constructors Constructor Description SQLSubPartition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaccept0(SQLASTVisitor visitor)SQLSubPartitionclone()SQLExprgetComment()SQLExprgetDataDirectory()SQLExprgetEngine()SQLExprgetIndexDirectory()SQLExprgetMaxRows()SQLExprgetMinRows()SQLNamegetName()SQLNamegetTableSpace()SQLPartitionValuegetValues()voidsetComment(SQLExpr comment)voidsetDataDirectory(SQLExpr dataDirectory)voidsetEngine(SQLExpr engine)voidsetIndexDirectory(SQLExpr indexDirectory)voidsetMaxRows(SQLExpr maxRows)voidsetMinRows(SQLExpr minRows)voidsetName(SQLName name)voidsetTableSpace(SQLName tableSpace)voidsetValues(SQLPartitionValue values)-
Methods inherited from class com.alibaba.druid.sql.dialect.oracle.ast.OracleSegmentAttributesImpl
cloneTo, getCompress, getCompressLevel, getFreeLists, getInitrans, getLogging, getMaxtrans, getPctfree, getPctincrease, getPctthreshold, getPctused, getStorage, getTablespace, isCompressForOltp, setCompress, setCompressForOltp, setCompressLevel, setFreeLists, setInitrans, setLogging, setMaxtrans, setPctfree, setPctincrease, setPctthreshold, setPctused, setStorage, setTablespace
-
Methods inherited from class com.alibaba.druid.sql.ast.SQLObjectImpl
accept, acceptChild, acceptChild, addAfterComment, addAfterComment, addBeforeComment, addBeforeComment, cloneTo, computeDataType, containsAttribute, getAfterCommentsDirect, getAttribute, getAttributes, getAttributesDirect, getBeforeCommentsDirect, getHint, getParent, getParent, getSourceColumn, getSourceLine, hasAfterComment, hasBeforeComment, output, putAttribute, setHint, setParent, setSource, setSourceLine, toString
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.alibaba.druid.sql.ast.SQLObject
accept, addAfterComment, addAfterComment, addBeforeComment, addBeforeComment, containsAttribute, getAfterCommentsDirect, getAttribute, getAttributes, getAttributesDirect, getBeforeCommentsDirect, getParent, getParent, getSourceColumn, getSourceLine, hasAfterComment, hasBeforeComment, output, putAttribute, setParent, setSource
-
-
-
-
Field Detail
-
name
protected SQLName name
-
values
protected SQLPartitionValue values
-
tableSpace
protected SQLName tableSpace
-
dataDirectory
protected SQLExpr dataDirectory
-
indexDirectory
protected SQLExpr indexDirectory
-
maxRows
protected SQLExpr maxRows
-
minRows
protected SQLExpr minRows
-
engine
protected SQLExpr engine
-
comment
protected SQLExpr comment
-
-
Method Detail
-
getName
public SQLName getName()
-
setName
public void setName(SQLName name)
-
getValues
public SQLPartitionValue getValues()
-
setValues
public void setValues(SQLPartitionValue values)
-
getTableSpace
public SQLName getTableSpace()
-
setTableSpace
public void setTableSpace(SQLName tableSpace)
-
getDataDirectory
public SQLExpr getDataDirectory()
-
setDataDirectory
public void setDataDirectory(SQLExpr dataDirectory)
-
getIndexDirectory
public SQLExpr getIndexDirectory()
-
setIndexDirectory
public void setIndexDirectory(SQLExpr indexDirectory)
-
getMaxRows
public SQLExpr getMaxRows()
-
setMaxRows
public void setMaxRows(SQLExpr maxRows)
-
getMinRows
public SQLExpr getMinRows()
-
setMinRows
public void setMinRows(SQLExpr minRows)
-
getEngine
public SQLExpr getEngine()
-
setEngine
public void setEngine(SQLExpr engine)
-
getComment
public SQLExpr getComment()
-
setComment
public void setComment(SQLExpr comment)
-
accept0
protected void accept0(SQLASTVisitor visitor)
- Specified by:
accept0in classSQLObjectImpl
-
clone
public SQLSubPartition clone()
- Specified by:
clonein interfaceSQLObject- Overrides:
clonein classSQLObjectImpl
-
-