Interface PathInfo
- 
- All Known Implementing Classes:
- BasicPathInfo
 
 public interface PathInfoRepresents information about a path passed into a TSDB query. Created by colby.clegg on 3/3/2016.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description DataTypegetDataType()The data type of the item in the result set.InterpolationModegetInterpolationMode()How the tag thinks it should be interpolated.java.lang.StringgetPath()The string path representing the specific tag/datapoint.PropertySetgetProperties()Includes any extra properties about the tag that were stored.intindex()An id that is unique for this path in this query result set.
 
- 
- 
- 
Method Detail- 
indexint index() An id that is unique for this path in this query result set. It is a shortcut for the path reference, useful for hashing and bookkeeping. It refers to the position of the path in the query path list.
 - 
getPathjava.lang.String getPath() The string path representing the specific tag/datapoint.
 - 
getDataTypeDataType getDataType() The data type of the item in the result set.
 - 
getInterpolationModeInterpolationMode getInterpolationMode() How the tag thinks it should be interpolated.
 - 
getPropertiesPropertySet getProperties() Includes any extra properties about the tag that were stored.
 
- 
 
-