com.github.jalasoft.expression.czech.input.InputSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of czech-bool-expression Show documentation
Show all versions of czech-bool-expression Show documentation
This project provides an easy way of reading boolean expressions written in Czech language
package com.github.jalasoft.expression.czech.input;
import java.util.Optional;
/**
* An abstraction of an input. It provides character after character until new ine is available.
*
* @author Jan "Honzales" Lastovkcka
*/
public interface InputSystem {
Optional nextSymbol();
}