Interface Range.Builder

All Superinterfaces:
Buildable, CopyableBuilder<Range.Builder,Range>, SdkBuilder<Range.Builder,Range>, SdkPojo
Enclosing class:
Range

@Mutable @NotThreadSafe public static interface Range.Builder extends SdkPojo, CopyableBuilder<Range.Builder,Range>
  • Method Summary

    Modifier and Type
    Method
    Description
    end(Long end)
    The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
    start(Long start)
    The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
    startColumn(Long startColumn)
    In the line where the sensitive data starts, the column within the line where the sensitive data starts.

    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 Details

    • start

      Range.Builder start(Long start)

      The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

      Parameters:
      start - The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • end

      Range.Builder end(Long end)

      The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

      Parameters:
      end - The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • startColumn

      Range.Builder startColumn(Long startColumn)

      In the line where the sensitive data starts, the column within the line where the sensitive data starts.

      Parameters:
      startColumn - In the line where the sensitive data starts, the column within the line where the sensitive data starts.
      Returns:
      Returns a reference to this object so that method calls can be chained together.