Interface Page.Builder

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

public static interface Page.Builder extends SdkPojo, CopyableBuilder<Page.Builder,Page>
  • Method Details

    • pageNumber

      Page.Builder pageNumber(Long pageNumber)

      The page number of the page that contains the sensitive data.

      Parameters:
      pageNumber - The page number of the page that contains the sensitive data.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • lineRange

      Page.Builder lineRange(Range lineRange)

      An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.

      Parameters:
      lineRange - An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • lineRange

      default Page.Builder lineRange(Consumer<Range.Builder> lineRange)

      An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.

      This is a convenience method that creates an instance of the Range.Builder avoiding the need to create one manually via Range.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to lineRange(Range).

      Parameters:
      lineRange - a consumer that will call methods on Range.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • offsetRange

      Page.Builder offsetRange(Range offsetRange)

      An occurrence of sensitive data detected in a binary text file.

      Parameters:
      offsetRange - An occurrence of sensitive data detected in a binary text file.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • offsetRange

      default Page.Builder offsetRange(Consumer<Range.Builder> offsetRange)

      An occurrence of sensitive data detected in a binary text file.

      This is a convenience method that creates an instance of the Range.Builder avoiding the need to create one manually via Range.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to offsetRange(Range).

      Parameters:
      offsetRange - a consumer that will call methods on Range.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: