Interface FindOptions


public interface FindOptions
The parameters of the text find request.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder of FindOptions.
  • Method Summary

    Modifier and Type
    Method
    Description
    default boolean
    Returns true if the search is case-sensitive.
    default boolean
    Returns true if the search is performed backward.
    Creates a new FindOptions builder.
  • Method Details

    • newBuilder

      static FindOptions.Builder newBuilder()
      Creates a new FindOptions builder.
      Returns:
      a new FindOptions.Builder instance
    • isMatchCase

      default boolean isMatchCase()
      Returns true if the search is case-sensitive.
    • isSearchBackward

      default boolean isSearchBackward()
      Returns true if the search is performed backward.