Uses of Class
org.jparsec.ListFactory
Packages that use ListFactory
-
Uses of ListFactory in org.jparsec
Fields in org.jparsec declared as ListFactoryModifier and TypeFieldDescriptionprivate static final ListFactoryListFactory.ARRAY_LIST_FACTORYprivate final ListFactory<T> DelimitedParser.listFactoryprivate final ListFactory<T> RepeatAtLeastParser.listFactoryprivate final ListFactory<T> RepeatTimesParser.listFactoryMethods in org.jparsec that return ListFactoryModifier and TypeMethodDescription(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 ListFactoryModifierConstructorDescription(package private)DelimitedParser(Parser<T> p, Parser<?> delim, ListFactory<T> listFactory) (package private)RepeatAtLeastParser(Parser<? extends T> parser, int min, ListFactory<T> listFactory) (package private)RepeatTimesParser(Parser<? extends T> parser, int min, int max, ListFactory<T> listFactory)