SearchFolders - ViiSE/papka GitHub Wiki

SearchFolders

Interface:

public interface SearchFolders<T, V> extends Search<List<Folder<T>>, V> {
    List<Folder<T>> answer(V query) throws NotFoundException;
}

Methods

List<Folder<T>> answer(V query) throws NotFoundException - returns the list of found folders.

Implementations

SearchFoldersByRegex<T> - search folders by regular expression.

Description

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.

⚠️ **GitHub.com Fallback** ⚠️