public abstract class SearchCriteria extends Object
Class that can be used to construct criteria when searching for watermarks.
Modifier | Constructor and Description |
---|---|
protected |
SearchCriteria()
Initializes a new instance of the
class. |
Modifier and Type | Method and Description |
---|---|
SearchCriteria |
and(SearchCriteria other)
Combines this
with other criteria using logical AND operator. |
SearchCriteria |
not()
Negates this
. |
SearchCriteria |
or(SearchCriteria other)
Combines this
with other criteria using logical OR operator. |
protected SearchCriteria()
SearchCriteria
class.public final SearchCriteria and(SearchCriteria other)
SearchCriteria
with other criteria using logical AND operator.other
- Search criteria to combine with.public final SearchCriteria or(SearchCriteria other)
SearchCriteria
with other criteria using logical OR operator.other
- Search criteria to combine with.public final SearchCriteria not()
SearchCriteria
.