Uses of Class
org.jparsec.ListFactory
-
Packages that use ListFactory Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of ListFactory in org.jparsec
Fields in org.jparsec declared as ListFactory Modifier and Type Field Description private static ListFactoryListFactory. ARRAY_LIST_FACTORYprivate ListFactory<T>DelimitedParser. listFactoryprivate ListFactory<T>RepeatAtLeastParser. listFactoryprivate ListFactory<T>RepeatTimesParser. listFactoryMethods in org.jparsec that return ListFactory Modifier and Type Method Description (package private) static <T> ListFactory<T>ListFactory. arrayListFactory()Returns aListFactorythat creates an emptyArrayList.(package private) static <T> ListFactory<T>ListFactory. arrayListFactoryWithFirstElement(T first)Constructors in org.jparsec with parameters of type ListFactory Constructor Description DelimitedParser(Parser<T> p, Parser<?> delim, ListFactory<T> listFactory)RepeatAtLeastParser(Parser<? extends T> parser, int min, ListFactory<T> listFactory)RepeatTimesParser(Parser<? extends T> parser, int min, int max, ListFactory<T> listFactory)
-