Class TypeFilter
java.lang.Object
com.inductiveautomation.ignition.common.sqltags.history.annotations.TypeFilter
- All Implemented Interfaces:
Serializable
This filter is used to specify types of annotations to return during a query.
User: these annotations have data that are created by users. These are the general purpose annotations that most people think of.
System: these are virtual annotations that are generated by different subsystems. All of them are identified by the pattern "system/{id}".
Types can be specified by broad category, or by specific ids by creating a custom filter.
User: these annotations have data that are created by users. These are the general purpose annotations that most people think of.
System: these are virtual annotations that are generated by different subsystems. All of them are identified by the pattern "system/{id}".
Types can be specified by broad category, or by specific ids by creating a custom filter.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TypeFilter
Includes all types, both system and user defined.static final TypeFilter
Includes all system-space types.static final String
The type id used to identify all system-space types.static final TypeFilter
Includes all user-space types.static final String
The type id used to identify all user-space types. -
Method Summary
-
Field Details
-
USER_TYPEID
The type id used to identify all user-space types. Typically not used directly, but can be used to specify a custom list of all user types, and specific system types.- See Also:
-
SYSTEM_TYPEID
The type id used to identify all system-space types. Typically not used directly, but can be used to specify a custom list of all system types, and specific user types.- See Also:
-
ALL
Includes all types, both system and user defined. -
USER_ONLY
Includes all user-space types. These are annotation types whose data is generated by the user. -
SYSTEM_ONLY
Includes all system-space types. These are annotation types whose data is generated by a sub-system.
-
-
Method Details