Interface CodeErrorLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CodeErrorLocation.Builder,CodeErrorLocation>,SdkBuilder<CodeErrorLocation.Builder,CodeErrorLocation>,SdkPojo
- Enclosing class:
- CodeErrorLocation
public static interface CodeErrorLocation.Builder extends SdkPojo, CopyableBuilder<CodeErrorLocation.Builder,CodeErrorLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeErrorLocation.Buildercolumn(Integer column)The column number in the code.CodeErrorLocation.Builderline(Integer line)The line number in the code.CodeErrorLocation.Builderspan(Integer span)The span/length of the error.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
line
CodeErrorLocation.Builder line(Integer line)
The line number in the code. Defaults to
0if unknown.- Parameters:
line- The line number in the code. Defaults to0if 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
0if unknown.- Parameters:
column- The column number in the code. Defaults to0if 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
-1if unknown.- Parameters:
span- The span/length of the error. Defaults to-1if unknown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-