Interface SearchKeyword
public interface SearchKeyword
SearchKeyword
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchKeyword searchKeyword = SearchKeyword.builder()
.text("{text}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic SearchKeywordBuilder
builder()
builder factory method for SearchKeywordstatic SearchKeywordBuilder
builder
(SearchKeyword template) create builder for SearchKeyword instancestatic SearchKeyword
deepCopy
(SearchKeyword template) factory method to create a deep copy of SearchKeyword@Valid SuggestTokenizer
If no tokenizer is defined, thetext
is used as a single token.@NotNull String
getText()
Text to return in the SuggestionResult.static SearchKeyword
of()
factory methodstatic SearchKeyword
of
(SearchKeyword template) factory method to create a shallow copy SearchKeywordvoid
setSuggestTokenizer
(SuggestTokenizer suggestTokenizer) If no tokenizer is defined, thetext
is used as a single token.void
Text to return in the SuggestionResult.static com.fasterxml.jackson.core.type.TypeReference<SearchKeyword>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withSearchKeyword
(Function<SearchKeyword, T> helper) accessor map function
-
Method Details
-
getText
Text to return in the SuggestionResult.
- Returns:
- text
-
getSuggestTokenizer
If no tokenizer is defined, the
text
is used as a single token.- Returns:
- suggestTokenizer
-
setText
Text to return in the SuggestionResult.
- Parameters:
text
- value to be set
-
setSuggestTokenizer
If no tokenizer is defined, the
text
is used as a single token.- Parameters:
suggestTokenizer
- value to be set
-
of
factory method- Returns:
- instance of SearchKeyword
-
of
factory method to create a shallow copy SearchKeyword- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of SearchKeyword- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchKeyword- Returns:
- builder
-
builder
create builder for SearchKeyword instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withSearchKeyword
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-