Package ai.extend.types
Class FileContentsSheetsItem.Builder
- java.lang.Object
-
- ai.extend.types.FileContentsSheetsItem.Builder
-
- All Implemented Interfaces:
FileContentsSheetsItem._FinalStage,FileContentsSheetsItem.SheetNameStage
- Enclosing class:
- FileContentsSheetsItem
public static final class FileContentsSheetsItem.Builder extends java.lang.Object implements FileContentsSheetsItem.SheetNameStage, FileContentsSheetsItem._FinalStage
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FileContentsSheetsItembuild()FileContentsSheetsItem.Builderfrom(FileContentsSheetsItem other)FileContentsSheetsItem._FinalStagerawText(java.lang.String rawText)The raw text content of the sheet in CSV format.FileContentsSheetsItem._FinalStagerawText(java.util.Optional<java.lang.String> rawText)The raw text content of the sheet in CSV format.FileContentsSheetsItem._FinalStagesheetName(java.lang.String sheetName)The name of the sheet.
-
-
-
Method Detail
-
from
public FileContentsSheetsItem.Builder from(FileContentsSheetsItem other)
- Specified by:
fromin interfaceFileContentsSheetsItem.SheetNameStage
-
sheetName
public FileContentsSheetsItem._FinalStage sheetName(@NotNull java.lang.String sheetName)
The name of the sheet.
The name of the sheet.
- Specified by:
sheetNamein interfaceFileContentsSheetsItem.SheetNameStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
rawText
public FileContentsSheetsItem._FinalStage rawText(java.lang.String rawText)
The raw text content of the sheet in CSV format.
- Specified by:
rawTextin interfaceFileContentsSheetsItem._FinalStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
rawText
public FileContentsSheetsItem._FinalStage rawText(java.util.Optional<java.lang.String> rawText)
The raw text content of the sheet in CSV format.
- Specified by:
rawTextin interfaceFileContentsSheetsItem._FinalStage
-
build
public FileContentsSheetsItem build()
- Specified by:
buildin interfaceFileContentsSheetsItem._FinalStage
-
-