Package net.sf.okapi.filters.openxml
Interface WorksheetConfigurations
-
- All Known Implementing Classes:
WorksheetConfigurations.Default
public interface WorksheetConfigurations
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classWorksheetConfigurations.Defaultstatic interfaceWorksheetConfigurations.InputThe worksheet configurations input.static interfaceWorksheetConfigurations.Output<T>The worksheet configurations output.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFrom(WorksheetConfigurations.Input input)Adds worksheet configurations from input.Set<String>excludedColumnsFor(String worksheetName)Obtains excluded columns for a specified worksheet name.Set<Integer>excludedRowsFor(String worksheetName)Obtains excluded rows for a specified worksheet name.Set<String>metadataColumnsFor(String worksheetName)Obtains metadata columns for a specified worksheet name.Set<Integer>metadataRowsFor(String worksheetName)Obtains metadata rows for a specified worksheet name.<T> TwrittenTo(WorksheetConfigurations.Output<T> output)Obtains the worksheet configurations output with the written worksheet configurations to it.
-
-
-
Method Detail
-
excludedRowsFor
Set<Integer> excludedRowsFor(String worksheetName)
Obtains excluded rows for a specified worksheet name.- Parameters:
worksheetName- The worksheet name- Returns:
- The excluded rows
-
excludedColumnsFor
Set<String> excludedColumnsFor(String worksheetName)
Obtains excluded columns for a specified worksheet name.- Parameters:
worksheetName- The worksheet name- Returns:
- The excluded rows
-
metadataRowsFor
Set<Integer> metadataRowsFor(String worksheetName)
Obtains metadata rows for a specified worksheet name.- Parameters:
worksheetName- The worksheet name- Returns:
- The excluded rows
-
metadataColumnsFor
Set<String> metadataColumnsFor(String worksheetName)
Obtains metadata columns for a specified worksheet name.- Parameters:
worksheetName- The worksheet name- Returns:
- The metadata rows
-
addFrom
void addFrom(WorksheetConfigurations.Input input)
Adds worksheet configurations from input.- Parameters:
input- The worksheet configurations input to add from
-
writtenTo
<T> T writtenTo(WorksheetConfigurations.Output<T> output)
Obtains the worksheet configurations output with the written worksheet configurations to it.- Parameters:
output- The output- Returns:
- The output with the written worksheet configurations
-
-