Interface ISTTrackingEvent

    • Method Detail

      • getId

        int getId()
        Returns the primary key Id in a database, of the event that this object represents
        Returns:
        id of the event that this object represents
      • updateTimePeriod

        void updateTimePeriod​(org.joda.time.Interval period)
        Updates the time period that this object is valid
        Parameters:
        period - the new period for this object to be considered valid over
      • getType

        EventType getType()
        Returns the type of event that this object represents. It is usually a two letter designation such as AR for Active IRegion, SS for Sun Spot etc.
        Returns:
        the type of event that this object represents.
      • getPrevious

        ISTTrackingEvent getPrevious()
        Returns a pointer to the event detection that is considered the previous detection of the same object.
        Returns:
        pointer to the previous detection in the chain.
      • setPrevious

        void setPrevious​(ISTTrackingEvent event)
        Sets a pointer to the event detection that is considered the previous detection of the same object. This method only changes the pointer from null to a non-null value. Once it is set, it does not change with the next call.
        Parameters:
        event - the previous detection in the chain
      • getNext

        ISTTrackingEvent getNext()
        Returns a pointer to the event detection that is considered the next detection of the same object.
        Returns:
        a pointer to the next detection in the chain.
      • setNext

        void setNext​(ISTTrackingEvent event)
        Sets a pointer to the event detection that is considered the next detection of the same object. This method only changes the pointer from null to a non-null value. Once it is set, it does not change with the next call.
        Parameters:
        event - the next detection in the chain