Class NfaBuilder


public class NfaBuilder extends Node.Visitor
A Visitor object that builds an Nfa start and end state from a Regular expression. This is a result of refactoring some legacy code that used all static methods. NB. This class and the visit methods must be public because of the use of reflection. Ideally, it would all be private and package-private.