Interface FuzzyStringMatchFilter<T>
-
- All Superinterfaces:
DebugDumpable,Freezable,Itemable,ItemFilter,ObjectFilter,PrismContextSensitive,PropertyValueFilter<T>,Revivable,Serializable,ValueFilter<PrismPropertyValue<T>,PrismPropertyDefinition<T>>
- All Known Implementing Classes:
FuzzyStringMatchFilterImpl
public interface FuzzyStringMatchFilter<T> extends PropertyValueFilter<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceFuzzyStringMatchFilter.FuzzyMatchingMethodstatic classFuzzyStringMatchFilter.Levenshteinstatic classFuzzyStringMatchFilter.SimilarityTrigram similarity TODO consider using Double instead of Floatstatic classFuzzyStringMatchFilter.ThresholdMatchingMethod<T extends Number>
-
Field Summary
Fields Modifier and Type Field Description static QNameINCLUSIVEstatic QNameLEVENSHTEINstatic QNameSIMILARITYstatic QNameTHRESHOLD-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description FuzzyStringMatchFilter.FuzzyMatchingMethodgetMatchingMethod()static FuzzyStringMatchFilter.Levenshteinlevenshtein(int threshold, boolean inclusive)static FuzzyStringMatchFilter.Similaritysimilarity(float threshold, boolean inclusive)-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDump, debugDumpLazily, debugDumpLazily
-
Methods inherited from interface com.evolveum.midpoint.prism.Freezable
checkImmutable, checkMutable, freeze, isImmutable
-
Methods inherited from interface com.evolveum.midpoint.prism.query.ObjectFilter
accept, revive
-
Methods inherited from interface com.evolveum.midpoint.prism.PrismContextSensitive
getPrismContext
-
Methods inherited from interface com.evolveum.midpoint.prism.query.PropertyValueFilter
clone, getMatchingRule
-
Methods inherited from interface com.evolveum.midpoint.prism.query.ValueFilter
canNestInsideExists, checkConsistence, equals, getDeclaredMatchingRule, getDefinition, getElementName, getExpression, getFullPath, getParentPath, getPath, getRightHandSideDefinition, getRightHandSidePath, getSingleValue, getValues, hasNoValue, isRaw, match, matchesOnly, nested, setDefinition, setExpression, setMatchingRule, setRightHandSideDefinition, setRightHandSidePath, setValue
-
-
-
-
Method Detail
-
getMatchingMethod
FuzzyStringMatchFilter.FuzzyMatchingMethod getMatchingMethod()
-
levenshtein
static FuzzyStringMatchFilter.Levenshtein levenshtein(int threshold, boolean inclusive)
-
similarity
static FuzzyStringMatchFilter.Similarity similarity(float threshold, boolean inclusive)
-
-