SearchFolders - ViiSE/papka GitHub Wiki
public interface SearchFolders<T, V> extends Search<List<Folder<T>>, V> {
List<Folder<T>> answer(V query) throws NotFoundException;
}List<Folder<T>> answer(V query) throws NotFoundException - returns the list of found folders.SearchFoldersByRegex<T> - search folders by regular expression.
The SearchFolders interface searches for a folders by a given criterion. If search did not return any result, it throws NotFoundException. This interface extends Search interface.