Origin

interface Origin

Interface that uniquely represents the origin of an item. For example, an item loaded from a File may have an origin made up of the file name along with line/column numbers.

Implementations must provide sensible hashCode(), equals(...) and #toString() implementations.

Author

Madhura Bhave

Phillip Webb

Since

2.0.0

See also

Inheritors

Functions

Link copied to clipboard
open fun from(source: Any): Origin
Find the Origin that an object originated from.
Link copied to clipboard
open fun getParent(): Origin
Return the parent origin for this instance if there is one.
Link copied to clipboard
open fun parentsFrom(source: Any): List<Origin>
Find the parents of the Origin that an object originated from.