Interface ComplexPoint<V>
- Type Parameters:
V
- The type of the value contained in the complex point.
- All Superinterfaces:
Comparable<TemporalPoint<V,
,ComplexPointType>> TemporalPoint<V,
ComplexPointType>
- All Known Implementing Classes:
AnnotationPoint
,MetadataPoint
Represents a complex point in the historian system.
This non-sealed interface extends TemporalPoint
with a value type V
and a point type
of ComplexPointType
. It provides a default implementation for retrieving the type of the point.
-
Method Summary
Modifier and TypeMethodDescriptiondefault ComplexPointType
type()
Retrieves the type of the complex point.Methods inherited from interface com.inductiveautomation.historian.common.model.data.TemporalPoint
compareTo, source, timestamp, value
-
Method Details
-
type
Retrieves the type of the complex point.By default, this method returns
StandardComplexPointType.GENERIC
.- Specified by:
type
in interfaceTemporalPoint<V,
ComplexPointType> - Returns:
- The type of the complex point.
-