Interface CodeErrorLocation.Builder

    • Method Detail

      • line

        CodeErrorLocation.Builder line​(Integer line)

        The line number in the code. Defaults to 0 if unknown.

        Parameters:
        line - The line number in the code. Defaults to 0 if unknown.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • column

        CodeErrorLocation.Builder column​(Integer column)

        The column number in the code. Defaults to 0 if unknown.

        Parameters:
        column - The column number in the code. Defaults to 0 if unknown.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • span

        CodeErrorLocation.Builder span​(Integer span)

        The span/length of the error. Defaults to -1 if unknown.

        Parameters:
        span - The span/length of the error. Defaults to -1 if unknown.
        Returns:
        Returns a reference to this object so that method calls can be chained together.