Class ShowTimeSeriesPlan
- java.lang.Object
-
- org.apache.iotdb.db.qp.physical.PhysicalPlan
-
- org.apache.iotdb.db.qp.physical.sys.ShowPlan
-
- org.apache.iotdb.db.qp.physical.sys.ShowTimeSeriesPlan
-
- All Implemented Interfaces:
org.apache.iotdb.consensus.common.request.IConsensusRequest
public class ShowTimeSeriesPlan extends ShowPlan
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.iotdb.db.qp.physical.sys.ShowPlan
ShowPlan.ShowContentType
-
Nested classes/interfaces inherited from class org.apache.iotdb.db.qp.physical.PhysicalPlan
PhysicalPlan.Factory, PhysicalPlan.PhysicalPlanType
-
-
Field Summary
-
Fields inherited from class org.apache.iotdb.db.qp.physical.PhysicalPlan
canBeSplit, index
-
-
Constructor Summary
Constructors Constructor Description ShowTimeSeriesPlan()ShowTimeSeriesPlan(org.apache.iotdb.commons.path.PartialPath path)ShowTimeSeriesPlan(org.apache.iotdb.commons.path.PartialPath path, boolean isContains, java.lang.String key, java.lang.String value, int limit, int offset, boolean orderByHeat)ShowTimeSeriesPlan(org.apache.iotdb.commons.path.PartialPath path, int limit, int offset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeserialize(java.nio.ByteBuffer buffer)Deserialize the plan from the given buffer.java.lang.StringgetKey()java.util.Map<java.lang.Integer,Template>getRelatedTemplate()java.lang.StringgetValue()booleanisContains()booleanisOrderByHeat()voidserialize(java.io.DataOutputStream outputStream)Serialize the plan into the given buffer.voidsetIsContains(boolean isContains)voidsetKey(java.lang.String key)voidsetOrderByHeat(boolean orderByHeat)voidsetRelatedTemplate(java.util.Map<java.lang.Integer,Template> relatedTemplate)voidsetValue(java.lang.String value)-
Methods inherited from class org.apache.iotdb.db.qp.physical.sys.ShowPlan
getLimit, getOffset, getOperatorName, getPath, getPaths, getShowContentType, hasLimit, setHasLimit, setLimit, setOffset, toString
-
Methods inherited from class org.apache.iotdb.db.qp.physical.PhysicalPlan
canBeSplit, checkIntegrity, deserialize, getAggregations, getAuthPaths, getIndex, getLoginUserName, getOperatorType, isAuthenticationRequired, isDebug, isPrefixMatch, isQuery, isSelectInto, putString, putString, putStrings, putStrings, readString, readStrings, serialize, serializeImpl, serializeToByteBuffer, setDebug, setIndex, setLoginUserName, setOperatorType, setPaths, setPrefixMatch, setQuery
-
-
-
-
Constructor Detail
-
ShowTimeSeriesPlan
public ShowTimeSeriesPlan(org.apache.iotdb.commons.path.PartialPath path)
-
ShowTimeSeriesPlan
public ShowTimeSeriesPlan(org.apache.iotdb.commons.path.PartialPath path, boolean isContains, java.lang.String key, java.lang.String value, int limit, int offset, boolean orderByHeat)
-
ShowTimeSeriesPlan
public ShowTimeSeriesPlan(org.apache.iotdb.commons.path.PartialPath path, int limit, int offset)
-
ShowTimeSeriesPlan
public ShowTimeSeriesPlan()
-
-
Method Detail
-
isContains
public boolean isContains()
-
setIsContains
public void setIsContains(boolean isContains)
-
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()
-
setOrderByHeat
public void setOrderByHeat(boolean orderByHeat)
-
getRelatedTemplate
public java.util.Map<java.lang.Integer,Template> getRelatedTemplate()
-
setRelatedTemplate
public void setRelatedTemplate(java.util.Map<java.lang.Integer,Template> relatedTemplate)
-
serialize
public void serialize(java.io.DataOutputStream outputStream) throws java.io.IOExceptionDescription copied from class:PhysicalPlanSerialize the plan into the given buffer. All necessary fields will be serialized.- Overrides:
serializein classPhysicalPlan- Throws:
java.io.IOException
-
deserialize
public void deserialize(java.nio.ByteBuffer buffer) throws org.apache.iotdb.commons.exception.IllegalPathExceptionDescription copied from class:PhysicalPlanDeserialize the plan from the given buffer.- Overrides:
deserializein classPhysicalPlan- Throws:
org.apache.iotdb.commons.exception.IllegalPathException
-
-