Interface ComplexPointType
- All Superinterfaces:
QueryablePointType<ComplexPointType>
,TemporalPointType
- All Known Implementing Classes:
StandardComplexPointType
public non-sealed interface ComplexPointType
extends QueryablePointType<ComplexPointType>, TemporalPointType
Represents a complex point type in the historian system.
This non-sealed interface extends QueryablePointType
and TemporalPointType
,
providing additional functionality specific to complex point types.
-
Method Summary
Modifier and TypeMethodDescriptionClass<? extends ComplexPoint<?>>
Retrieves the class of the complex point associated with this type.Class<? extends ComplexQueryOptions<?>>
Retrieves the class of the query options associated with this complex point type.
-
Method Details
-
getPointClass
Class<? extends ComplexPoint<?>> getPointClass()Retrieves the class of the complex point associated with this type.- Specified by:
getPointClass
in interfaceTemporalPointType
- Returns:
- A
Class
object representing the type of the complex point.
-
getQueryOptionsClass
Class<? extends ComplexQueryOptions<?>> getQueryOptionsClass()Retrieves the class of the query options associated with this complex point type.- Specified by:
getQueryOptionsClass
in interfaceQueryablePointType<ComplexPointType>
- Returns:
- A
Class
object representing the type of the query options.
-