Uses of Class
org.codehaus.jparsec.functors.Tuple5

Packages that use Tuple5
org.codehaus.jparsec Provides core Parser implementations for parser combinator logic. 
org.codehaus.jparsec.functors Provides common functor interfaces, such as Map for mapping parser results as well as some common implementations. 
 

Uses of Tuple5 in org.codehaus.jparsec
 

Methods in org.codehaus.jparsec that return types with arguments of type Tuple5
static
<A,B,C,D,E>
Parser<Tuple5<A,B,C,D,E>>
Parsers.tuple(Parser<? extends A> p1, Parser<? extends B> p2, Parser<? extends C> p3, Parser<? extends D> p4, Parser<? extends E> p5)
          A Parser that sequentially runs 5 parser objects and collects the results in a Tuple5 object.
 

Uses of Tuple5 in org.codehaus.jparsec.functors
 

Methods in org.codehaus.jparsec.functors that return Tuple5
static
<A,B,C,D,E>
Tuple5<A,B,C,D,E>
Tuples.tuple(A a, B b, C c, D d, E e)
          Returns a Tuple5 of 5 objects.
 

Methods in org.codehaus.jparsec.functors that return types with arguments of type Tuple5
static
<A,B,C,D,E>
Map5<A,B,C,D,E,Tuple5<A,B,C,D,E>>
Maps.toTuple5()
          A Map5 object that maps 5 values to a Tuple5 object.
 



Copyright © 2014. All rights reserved.