eu.bandm.tools.ulex
Class ULex.Seq<A,B,R>

java.lang.Object
  extended by eu.bandm.tools.ulex.ULex<R>
      extended by eu.bandm.tools.ulex.ULex.Seq<A,B,R>
Direct Known Subclasses:
ULex.Concatenate, ULex.Seq_1, ULex.Seq_2
Enclosing class:
ULex<T>

public abstract static class ULex.Seq<A,B,R>
extends ULex<R>

Parser which accepts a sequence of two sub-parsers and returns, what is calculated by the user-defined method combine(A, B).


Nested Class Summary
 
Nested classes/interfaces inherited from class eu.bandm.tools.ulex.ULex
ULex.Alt<A>, ULex.CharSet, ULex.Concatenate, ULex.Const, ULex.ConstMap<T>, ULex.DecimalDigit, ULex.End, ULex.ExceptionFail, ULex.Fail<T>, ULex.Int, ULex.Length<T>, ULex.Natural, ULex.Natural_0, ULex.Negate, ULex.Opt<S>, ULex.Pattern, ULex.PatternInteger, ULex.PatternLength, ULex.Plus<S>, ULex.SemanticPattern<R>, ULex.Seq<A,B,R>, ULex.Seq_1<A,B>, ULex.Seq_2<A,B>, ULex.SkipWhitespace<S>, ULex.Star<S>, ULex.State, ULex.ToLower<S>
 
Field Summary
 
Fields inherited from class eu.bandm.tools.ulex.ULex
EXCEPTION_FAIL, result
 
Constructor Summary
ULex.Seq(ULex<A> first, ULex<B> second)
           
 
Method Summary
abstract  R combine(A a, B b)
           
 R tryParse(ULex.State state)
           
 
Methods inherited from class eu.bandm.tools.ulex.ULex
alt, alt, alt, alt, charSet, concatenate, concatenate, concatenate, constMap, end, fail, konst, length, negate, opt, parse, pattern, patternLength, plus, seq_1, seq_2, skipWhitespace, star, state, state, toLower
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ULex.Seq

public ULex.Seq(ULex<A> first,
                ULex<B> second)
Method Detail

tryParse

public R tryParse(ULex.State state)
Specified by:
tryParse in class ULex<R>

combine

public abstract R combine(A a,
                          B b)