Interface S_ConditionEntry
- 
 public interface S_ConditionEntrySee the grammar in Javadoc forQueryBuilder.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static interfaceS_ConditionEntry.FuzzyStringBuilder
 - 
Method Summary
 
- 
- 
- 
Method Detail- 
eqS_MatchingRuleEntry eq(Object... values) See https://docs.evolveum.com/midpoint/reference/concepts/query/query-api/[Query API] docs about support of multiple values (generally good in the new Native repository with IN semantics). For multi-value properties the semantics is ANY IN (non-empty intersection is a match).
 - 
eq<T> S_MatchingRuleEntry eq(PrismProperty<T> property) 
 - 
eqS_RightHandItemEntry eq() 
 - 
eqPolyS_MatchingRuleEntry eqPoly(String orig, String norm) 
 - 
eqPolyS_MatchingRuleEntry eqPoly(String orig) 
 - 
gtS_MatchingRuleEntry gt(Object value) 
 - 
gtS_RightHandItemEntry gt() 
 - 
geS_MatchingRuleEntry ge(Object value) 
 - 
geS_RightHandItemEntry ge() 
 - 
ltS_MatchingRuleEntry lt(Object value) 
 - 
ltS_RightHandItemEntry lt() 
 - 
leS_MatchingRuleEntry le(Object value) 
 - 
leS_RightHandItemEntry le() 
 - 
startsWithS_MatchingRuleEntry startsWith(Object value) 
 - 
startsWithPolyS_MatchingRuleEntry startsWithPoly(String orig, String norm) 
 - 
startsWithPolyS_MatchingRuleEntry startsWithPoly(String orig) 
 - 
endsWithS_MatchingRuleEntry endsWith(Object value) 
 - 
endsWithPolyS_MatchingRuleEntry endsWithPoly(String orig, String norm) 
 - 
endsWithPolyS_MatchingRuleEntry endsWithPoly(String orig) 
 - 
containsS_MatchingRuleEntry contains(Object value) 
 - 
containsPolyS_MatchingRuleEntry containsPoly(String orig, String norm) 
 - 
containsPolyS_MatchingRuleEntry containsPoly(String orig) 
 - 
refRelationS_FilterExit refRelation(QName... relations) 
 - 
refTypeS_FilterExit refType(QName... targetTypeName) 
 - 
refS_FilterExit ref(PrismReferenceValue... value) 
 - 
refS_FilterExit ref(Collection<PrismReferenceValue> values) 
 - 
refS_FilterExit ref(Collection<PrismReferenceValue> values, boolean nullTypeAsAny) 
 - 
refS_FilterExit ref(Collection<PrismReferenceValue> values, boolean nullOidAsAny, boolean nullTypeAsAny) 
 - 
refS_FilterExit ref(ExpressionWrapper expression) 
 - 
refS_FilterExit ref(RefFilter filter) 
 - 
refS_FilterExit ref(String... oid) Creates filter matching any of provided OIDs; works like oid is Any with no/null OID.
 - 
refdefault S_FilterExit ref(@Nullable @Nullable String oid, @Nullable @Nullable QName targetTypeName) Creates filter matching oid and/or targetTypeName, any of them optional. If both are null the result is the same asisNull()(null ref OID matches).
 - 
refS_FilterExit ref(@Nullable @Nullable String oid, @Nullable @Nullable QName targetTypeName, @Nullable @Nullable QName relation) 
 - 
isNullS_FilterExit isNull() 
 - 
fuzzyStringdefault S_FilterExit fuzzyString(String value, FuzzyStringMatchFilter.FuzzyMatchingMethod method) 
 - 
fuzzyStringS_ConditionEntry.FuzzyStringBuilder fuzzyString(String... values) 
 
- 
 
-