Interface CodeLine.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CodeLine.Builder,CodeLine>,SdkBuilder<CodeLine.Builder,CodeLine>,SdkPojo
- Enclosing class:
- CodeLine
public static interface CodeLine.Builder extends SdkPojo, CopyableBuilder<CodeLine.Builder,CodeLine>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeLine.Buildercontent(String content)The content of a line of codeCodeLine.BuilderlineNumber(Integer lineNumber)The line number that a section of code is located at.-
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
-
content
CodeLine.Builder content(String content)
The content of a line of code
- Parameters:
content- The content of a line of code- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineNumber
CodeLine.Builder lineNumber(Integer lineNumber)
The line number that a section of code is located at.
- Parameters:
lineNumber- The line number that a section of code is located at.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-