Class RawQueryOptions
java.lang.Object
com.inductiveautomation.historian.common.model.options.AbstractQueryOptions<K,DataPointType>
com.inductiveautomation.historian.common.model.options.DataPointQueryOptions<RawQueryKey>
com.inductiveautomation.historian.common.model.options.RawQueryOptions
- All Implemented Interfaces:
QueryOptions<RawQueryKey,DataPointType>
Represents the options for querying raw data points.
This final class extends DataPointQueryOptions with a specific query key type
of RawQueryKey. It provides functionality for building and retrieving
query options specific to raw data points.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA builder class for constructing instances ofRawQueryOptions.Nested classes/interfaces inherited from class com.inductiveautomation.historian.common.model.options.DataPointQueryOptions
DataPointQueryOptions.DataQueryBuilder<K extends DataPointQueryKey,B extends DataPointQueryOptions.DataQueryBuilder<K, B>> Nested classes/interfaces inherited from class com.inductiveautomation.historian.common.model.options.AbstractQueryOptions
AbstractQueryOptions.BaseBuilder<K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>, B extends AbstractQueryOptions.BaseBuilder<K, T, B>> -
Field Summary
Fields inherited from class com.inductiveautomation.historian.common.model.options.AbstractQueryOptions
extendedProperties, queryKeys, returnSize, timeRange -
Method Summary
Modifier and TypeMethodDescriptionstatic RawQueryOptions.Builderbuilder()Creates a newRawQueryOptions.Builderinstance for constructingRawQueryOptions.static RawQueryOptions.Builderbuilder(RawQueryOptions options) Creates a newRawQueryOptions.Builderinstance initialized with the values of the providedRawQueryOptions.Retrieves the type of the data point associated with this query.toString()Returns a string representation of thisRawQueryOptionsinstance.Methods inherited from class com.inductiveautomation.historian.common.model.options.DataPointQueryOptions
areObservationsExcluded, getQualityLevelFilterMethods inherited from class com.inductiveautomation.historian.common.model.options.AbstractQueryOptions
getExtendedProperties, getExtendedPropertyValue, getQueryKeys, getReturnSize, getTimeRange
-
Method Details
-
getPointType
Retrieves the type of the data point associated with this query.- Returns:
- The
DataPointType, which isStandardDataPointType.ATOMIC.
-
toString
Returns a string representation of thisRawQueryOptionsinstance.- Overrides:
toStringin classDataPointQueryOptions<RawQueryKey>- Returns:
- A string representation of this object.
-
builder
Creates a newRawQueryOptions.Builderinstance for constructingRawQueryOptions.- Returns:
- A new
RawQueryOptions.Builder.
-
builder
Creates a newRawQueryOptions.Builderinstance initialized with the values of the providedRawQueryOptions.- Parameters:
options- TheRawQueryOptionsto copy values from.- Returns:
- A new
RawQueryOptions.Builder.
-