Class FilterDataType<T>

    • Constructor Detail

      • FilterDataType

        public FilterDataType​(String id,
                              String description)
        Constructor.
        Parameters:
        id - String; id
        description - String; description
    • Method Detail

      • getValue

        public abstract T getValue​(GtuData gtu)
        Retrieves the value of the meta data of this type from a GTU.
        Parameters:
        gtu - GtuData; gtu to retrieve the value from
        Returns:
        value of the meta data of this type from a GTU, may be null if not applicable.
      • accept

        public void accept​(TrajectoryAcceptList trajectoryAcceptList,
                           Set<T> querySet)
        Determines for a set of trajectory's from a single GTU, which may be accepted according to this filter data type. As a single GTU may have several trajectories for a single TrajectoryGroup object, the specified TrajectoryGroup's may have duplicates. As the trajectory's are from a single GTU, the filter data is equal for all. Implementations of this method may for instance:
        1. Determine only from the first Trajectorys' filter data that all may be accepted.
        2. Determine for the separate Trajectory's whether they are acceptable.
        3. The same as 2, but refuse all if any is refused.
        4. The same as 2, but accept all if any is accepted.
        5. etc.
        The default implementation is that of 1, checking that the filter data value is in the provided query set.
        Parameters:
        trajectoryAcceptList - TrajectoryAcceptList; containing Trajectory's and TrajectoryGroup's pertaining to a single GTU, all assumed not accepted
        querySet - Set<T>; set of values in the query for this metadata type
      • getDescription

        public String getDescription()
        Returns the description.
        Returns:
        String; description.