Class ShowTimeSeriesStatement
- java.lang.Object
-
- org.apache.iotdb.db.mpp.plan.statement.StatementNode
-
- org.apache.iotdb.db.mpp.plan.statement.Statement
-
- org.apache.iotdb.db.mpp.plan.statement.metadata.ShowStatement
-
- org.apache.iotdb.db.mpp.plan.statement.metadata.ShowTimeSeriesStatement
-
public class ShowTimeSeriesStatement extends ShowStatement
SHOW TIMESERIES statement.Here is the syntax definition:
SHOW [LATEST] TIMESERIES [pathPattern] [WHERE key { = | CONTAINS } value] [LIMIT limit] [OFFSET offset]
-
-
Field Summary
-
Fields inherited from class org.apache.iotdb.db.mpp.plan.statement.metadata.ShowStatement
isPrefixPath
-
Fields inherited from class org.apache.iotdb.db.mpp.plan.statement.Statement
isDebug, statementType
-
-
Constructor Summary
Constructors Constructor Description ShowTimeSeriesStatement(org.apache.iotdb.commons.path.PartialPath pathPattern, boolean orderByHeat)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(StatementVisitor<R,C> visitor, C context)Accessible forStatementVisitor, useStatementVisitor.process(StatementNode, Object)instead.java.lang.StringgetKey()org.apache.iotdb.commons.path.PartialPathgetPathPattern()java.util.List<org.apache.iotdb.commons.path.PartialPath>getPaths()java.lang.StringgetValue()booleanisContains()booleanisOrderByHeat()voidsetContains(boolean contains)voidsetKey(java.lang.String key)voidsetValue(java.lang.String value)-
Methods inherited from class org.apache.iotdb.db.mpp.plan.statement.metadata.ShowStatement
getLimit, getOffset, isPrefixPath, setLimit, setOffset, setPrefixPath
-
-
-
-
Method Detail
-
getPathPattern
public org.apache.iotdb.commons.path.PartialPath getPathPattern()
-
isContains
public boolean isContains()
-
setContains
public void setContains(boolean contains)
-
getKey
public java.lang.String getKey()
-
setKey
public void setKey(java.lang.String key)
-
getValue
public java.lang.String getValue()
-
setValue
public void setValue(java.lang.String value)
-
isOrderByHeat
public boolean isOrderByHeat()
-
getPaths
public java.util.List<org.apache.iotdb.commons.path.PartialPath> getPaths()
- Overrides:
getPathsin classShowStatement
-
accept
public <R,C> R accept(StatementVisitor<R,C> visitor, C context)
Description copied from class:StatementNodeAccessible forStatementVisitor, useStatementVisitor.process(StatementNode, Object)instead.- Overrides:
acceptin classStatementNode
-
-