Table of Contents

Enum SearchMatchType

Namespace
BlazOrbit.Components
Assembly
BlazOrbit.Core.dll

Classifies how a SearchResult<T> matched the input query.

public enum SearchMatchType

Fields

Acronym = 4

Input matches the leading characters of consecutive words (acronym).

Contains = 3

Input appears somewhere inside the candidate.

Exact = 0

Whole input equals the candidate value.

Fuzzy = 5

Approximate (edit-distance / typo-tolerant) match.

StartsWith = 1

Candidate starts with the input.

WordStart = 2

Input matches the start of a word inside the candidate.