package org.nwapw.abacus.parsing; import java.util.List; /** * Interface that provides the ability to convert a string into a list of tokens. * * @param the type of the tokens produced. */ public interface Tokenizer { /** * Converts a string into tokens. * * @param string the string to convert. * @return the list of tokens, or null on error. */ public List tokenizeString(String string); }