Interface ViewFrame.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ViewFrame.Builder,ViewFrame>,SdkBuilder<ViewFrame.Builder,ViewFrame>,SdkPojo
- Enclosing class:
- ViewFrame
public static interface ViewFrame.Builder extends SdkPojo, CopyableBuilder<ViewFrame.Builder,ViewFrame>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ViewFrame.Builderanalytics(String analytics)Controls if analytics computation is enabled or disabled.ViewFrame.Builderanalytics(AnalyticsMode analytics)Controls if analytics computation is enabled or disabled.ViewFrame.BuildercolumnRange(Integer columnRange)The number of columns to include in the view frame, beginning with theStartColumnIndexvalue and ignoring any columns in theHiddenColumnslist.ViewFrame.BuilderhiddenColumns(String... hiddenColumns)A list of columns to hide in the view frame.ViewFrame.BuilderhiddenColumns(Collection<String> hiddenColumns)A list of columns to hide in the view frame.ViewFrame.BuilderrowRange(Integer rowRange)The number of rows to include in the view frame, beginning with theStartRowIndexvalue.ViewFrame.BuilderstartColumnIndex(Integer startColumnIndex)The starting index for the range of columns to return in the view frame.ViewFrame.BuilderstartRowIndex(Integer startRowIndex)The starting index for the range of rows to return in the view frame.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
startColumnIndex
ViewFrame.Builder startColumnIndex(Integer startColumnIndex)
The starting index for the range of columns to return in the view frame.
- Parameters:
startColumnIndex- The starting index for the range of columns to return in the view frame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnRange
ViewFrame.Builder columnRange(Integer columnRange)
The number of columns to include in the view frame, beginning with the
StartColumnIndexvalue and ignoring any columns in theHiddenColumnslist.- Parameters:
columnRange- The number of columns to include in the view frame, beginning with theStartColumnIndexvalue and ignoring any columns in theHiddenColumnslist.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hiddenColumns
ViewFrame.Builder hiddenColumns(Collection<String> hiddenColumns)
A list of columns to hide in the view frame.
- Parameters:
hiddenColumns- A list of columns to hide in the view frame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hiddenColumns
ViewFrame.Builder hiddenColumns(String... hiddenColumns)
A list of columns to hide in the view frame.
- Parameters:
hiddenColumns- A list of columns to hide in the view frame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startRowIndex
ViewFrame.Builder startRowIndex(Integer startRowIndex)
The starting index for the range of rows to return in the view frame.
- Parameters:
startRowIndex- The starting index for the range of rows to return in the view frame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowRange
ViewFrame.Builder rowRange(Integer rowRange)
The number of rows to include in the view frame, beginning with the
StartRowIndexvalue.- Parameters:
rowRange- The number of rows to include in the view frame, beginning with theStartRowIndexvalue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analytics
ViewFrame.Builder analytics(String analytics)
Controls if analytics computation is enabled or disabled. Enabled by default.
- Parameters:
analytics- Controls if analytics computation is enabled or disabled. Enabled by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsMode,AnalyticsMode
-
analytics
ViewFrame.Builder analytics(AnalyticsMode analytics)
Controls if analytics computation is enabled or disabled. Enabled by default.
- Parameters:
analytics- Controls if analytics computation is enabled or disabled. Enabled by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsMode,AnalyticsMode
-
-