#1258: MatchType.kt
projectforge-business/src/main/kotlin/org/projectforge/framework/persistence/api/impl/MatchType.kt Enum (Search Matching), projectforge-business/src/main/kotlin/org/projectforge/framework/persistence/api/impl/MatchType.kt 43 lines · 7 code · 34 comments · 2 blank
Enum defining full-text search match strategies: CONTAINS ("*string*"), EXACT ("string"), STARTS_WITH ("string*", default), and ENDS_WITH ("*string"). Used by DBPredicate implementations to configure Lucene wildcard matching.
Values
| Value | Pattern | Description |
CONTAINS | *string* | Substring match anywhere |
EXACT | string | Exact match |
STARTS_WITH | string* | Prefix match (default) |
ENDS_WITH | *string | Suffix match |
Git History
868d6abb7 2025 -> 2026
63081666f Source file headers: 2024-> 2025.
b6092df09 Copyright 2023 -> 2024
ab45d51fa Copyright 2001-2022 -> 2001-2023.
5f7ef41b8 Copyright 2021 -> 2022