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 ListFactory
ListFactory. ARRAY_LIST_FACTORY
private ListFactory<T>
DelimitedParser. listFactory
private ListFactory<T>
RepeatAtLeastParser. listFactory
private ListFactory<T>
RepeatTimesParser. listFactory
Methods in org.jparsec that return ListFactory Modifier and Type Method Description (package private) static <T> ListFactory<T>
ListFactory. arrayListFactory()
Returns aListFactory
that 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)
-