public interface CandidateFieldOperand
Defines the methods used to build Predicates for candidate user / group values.
| Modifier and Type | Method and Description |
|---|---|
Predicate |
containsAnyOf(Collection<String> possibleCandidates)
Builds a predicate which tests that the value of this operand contains any of the given
possibleCandidates. |
Predicate |
containsAnyOf(String possibleCandidate)
Builds a predicate which tests that the value of this operand contains the given
possibleCandidate. |
Predicate |
containsAnyOf(String possibleCandidate1,
String possibleCandidate2)
Builds a predicate which tests that the value of this operand contains the given
possibleCandidate1 or possibleCandidate2. |
Predicate |
containsAnyOf(String possibleCandidate1,
String possibleCandidate2,
String possibleCandidate3)
Builds a predicate which tests that the value of this operand contains the given
possibleCandidate1, possibleCandidate2, or
possibleCandidate3 |
Predicate |
containsAnyOf(String possibleCandidate1,
String possibleCandidate2,
String possibleCandidate3,
String... morePossibleCandidates)
Builds a predicate which tests that the value of this operand contains the given
possibleCandidate1, possibleCandidate2,
possibleCandidate3, or any of morePossibleCandidates. |
Predicate |
isEmpty()
Builds a predicate which tests that the value of this operand contains no candidates.
|
Predicate containsAnyOf(String possibleCandidate)
Builds a predicate which tests that the value of this operand contains the given possibleCandidate.
possibleCandidate - the expected candidatePredicate containsAnyOf(String possibleCandidate1, String possibleCandidate2)
Builds a predicate which tests that the value of this operand contains the given possibleCandidate1 or possibleCandidate2.
possibleCandidate1 - the first possible candidatepossibleCandidate2 - the second possible candidatePredicate containsAnyOf(String possibleCandidate1, String possibleCandidate2, String possibleCandidate3)
Builds a predicate which tests that the value of this operand contains the given possibleCandidate1, possibleCandidate2, or
possibleCandidate3
possibleCandidate1 - the first possible candidatepossibleCandidate2 - the second possible candidatepossibleCandidate3 - the third possible candidatePredicate containsAnyOf(String possibleCandidate1, String possibleCandidate2, String possibleCandidate3, String... morePossibleCandidates)
Builds a predicate which tests that the value of this operand contains the given possibleCandidate1, possibleCandidate2,
possibleCandidate3, or any of morePossibleCandidates.
possibleCandidate1 - the first possible candidatepossibleCandidate2 - the second possible candidatepossibleCandidate3 - the third possible candidatemorePossibleCandidates - more possible candidatesPredicate containsAnyOf(Collection<String> possibleCandidates)
Builds a predicate which tests that the value of this operand contains any of the given possibleCandidates.
possibleCandidates - the possible candidates (tested with OR semantics)Predicate isEmpty()
Builds a predicate which tests that the value of this operand contains no candidates.
Copyright © 2010 - 2019 edorasware ag. All Rights Reserved.