buildSearchText abstract method
Creates a string to be searched. If you want to search multiple items, combine all strings and return them as a single string.
検索対象の文字列を作成します。複数の項目を検索対象にしたい場合、すべての文字列を合成し1つの文字列として返してください。
String buildSearchText(User user){
return user.name + user.description;
}
Implementation
@protected
String buildSearchText(T value);