The
useTransparentBounds(boolean) method of
Matcher Class is used to set the transparent bounds of this matcher. By transparent bounds, it means that the matcher will be matched for the matching pattern beyond the region boundaries for getting a match, if the transparent bounds are set to true. This method returns a Matcher with the modified transparent bounds.
Syntax:
public boolean useTransparentBounds(
boolean setTransparentBounds)
Parameters: This method takes a parameter
setTransparentBounds which is a boolean value depicting the transparent bounds of this matcher to be modified into.
Return Value: This method returns a
Matcher with the modified transparent bounds.
Below examples illustrate the Matcher.useTransparentBounds() method:
Example 1:
Output:
Does this matcher has transparent bounds: true
Example 2: