Uses of Class
org.jparsec.functors.Pair
Packages that use Pair
Package
Description
Provides core Parser implementations for parser combinator logic.
Provides common functor interfaces, such as Map for mapping parser results
as well as some common implementations.
-
Uses of Pair in org.jparsec
Methods in org.jparsec that return types with arguments of type PairModifier and TypeMethodDescriptionDeprecated.Prefer to converting to your own object with a lambda.Deprecated.Prefer to converting to your own object with a lambda. -
Uses of Pair in org.jparsec.examples.java.ast.statement
Fields in org.jparsec.examples.java.ast.statement with type parameters of type PairModifier and TypeFieldDescriptionfinal List<Pair<Expression, Statement>> SwitchStatement.casesfinal List<Pair<Expression, Statement>> IfStatement.elseifsConstructor parameters in org.jparsec.examples.java.ast.statement with type arguments of type PairModifierConstructorDescriptionIfStatement(Expression condition, Statement then, List<Pair<Expression, Statement>> elseifs, Statement otherwise) SwitchStatement(Expression condition, List<Pair<Expression, Statement>> cases, Statement defaultCase) -
Uses of Pair in org.jparsec.examples.sql.ast
Fields in org.jparsec.examples.sql.ast with type parameters of type PairModifier and TypeFieldDescriptionfinal List<Pair<Expression, Expression>> FullCaseExpression.casesfinal List<Pair<Expression, Expression>> SimpleCaseExpression.casesConstructor parameters in org.jparsec.examples.sql.ast with type arguments of type PairModifierConstructorDescriptionFullCaseExpression(List<Pair<Expression, Expression>> cases, Expression defaultValue) SimpleCaseExpression(Expression condition, List<Pair<Expression, Expression>> cases, Expression defaultValue) -
Uses of Pair in org.jparsec.examples.sql.parser
Methods in org.jparsec.examples.sql.parser that return types with arguments of type PairModifier and TypeMethodDescriptionprivate static Parser<List<Pair<Expression, Expression>>> ExpressionParser.whenThens(Parser<Expression> cond, Parser<Expression> expr) -
Uses of Pair in org.jparsec.functors
Subclasses of Pair in org.jparsec.functorsModifier and TypeClassDescriptionclassTuple3<A,B, C> Deprecated.Prefer to using a lambda expression to convert to your own type.classTuple4<A,B, C, D> Deprecated.Prefer to using a lambda expression to convert to your own type.classTuple5<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 PairModifier and TypeMethodDescriptionstatic <A,B> Pair <A, B> Tuples.pair(A a, B b) Deprecated.Returns aPairof 2 objects.static <A,B> Pair <A, B> Tuples.tuple(A a, B b) Deprecated.Returns aPairof 2 objects.Methods in org.jparsec.functors that return types with arguments of type PairMethods in org.jparsec.functors with parameters of type Pair