Uses of Class
org.jparsec.functors.Tuple4
-
Packages that use Tuple4 Package Description org.jparsec Provides core Parser implementations for parser combinator logic.org.jparsec.functors Provides common functor interfaces, such as Map for mapping parser results as well as some common implementations. -
-
Uses of Tuple4 in org.jparsec
Methods in org.jparsec that return types with arguments of type Tuple4 Modifier and Type Method Description static <A,B,C,D>
Parser<Tuple4<A,B,C,D>>Parsers. tuple(Parser<? extends A> p1, Parser<? extends B> p2, Parser<? extends C> p3, Parser<? extends D> p4)
Deprecated.Prefer to converting to your own object with a lambda. -
Uses of Tuple4 in org.jparsec.functors
Subclasses of Tuple4 in org.jparsec.functors Modifier and Type Class Description class
Tuple5<A,B,C,D,E>
Deprecated.Prefer to using a lambda expression to convert to your own type.Methods in org.jparsec.functors that return Tuple4 Modifier and Type Method Description static <A,B,C,D>
Tuple4<A,B,C,D>Tuples. tuple(A a, B b, C c, D d)
Deprecated.Returns aTuple4
of 4 objects.Methods in org.jparsec.functors that return types with arguments of type Tuple4 Modifier and Type Method Description static <A,B,C,D>
Map4<A,B,C,D,Tuple4<A,B,C,D>>Maps. toTuple4()
Deprecated.Methods in org.jparsec.functors with parameters of type Tuple4 Modifier and Type Method Description (package private) boolean
Tuple4. equals(Tuple4<?,?,?,?> other)
Deprecated.
-