Suspected Reference Functions
Function
Signature
Meaning
hasSuspectedLink
boolean hasSuspectedLink(TrackerItemDto)
Returns true if the given tracker item has suspected links.
hasUpstreamSuspectedLink
boolean hasUpstreamSuspectedLink(TrackerItemDto)
Returns true if the given tracker item has upstream suspected links.
hasDownstreamSuspectedLink
boolean hasDownstreamSuspectedLink(TrackerItemDto)
Returns true if the given tracker item has downstream suspected links.
Examples
Check if the tracker item does not have suspected links:
!hasSuspectedLink(this)
Check if the tracker item has upstream suspected links and does not have downstream suspected links:
hasUpstreamSuspectedLink(this) and !hasDownstreamSuspectedLink(this)
Was this helpful?