Interface CustomTokenizer

All Superinterfaces:
SuggestTokenizer
All Known Implementing Classes:
CustomTokenizerImpl

public interface CustomTokenizer extends SuggestTokenizer

Define arbitrary tokens that are used to match the input.


Example to create an instance using the builder pattern

     CustomTokenizer customTokenizer = CustomTokenizer.builder()
             .plusInputs(inputsBuilder -> inputsBuilder)
             .build()