Package com.teamdev.jxbrowser.search
Interface FindOptions
public interface FindOptions
The parameters of the text find request.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Returnstrue
if the search is case-sensitive.default boolean
Returnstrue
if the search is performed backward.static FindOptions.Builder
Creates a newFindOptions
builder.
-
Method Details
-
newBuilder
Creates a newFindOptions
builder.- Returns:
- a new
FindOptions.Builder
instance
-
isMatchCase
default boolean isMatchCase()Returnstrue
if the search is case-sensitive. -
isSearchBackward
default boolean isSearchBackward()Returnstrue
if the search is performed backward.
-