Uses of Class
jfun.parsec.tokens.TypedToken

Packages that use TypedToken
jfun.parsec Provides classes and interfaces for parser combinator logic and basic parsers. 
jfun.parsec.tokens Provides some predefined tokens and Tokenizer implementations. 
 

Uses of TypedToken in jfun.parsec
 

Methods in jfun.parsec that return TypedToken
 TypedToken<TokenType> String2TokenWord.fromString(int from, int len, java.lang.String s)
           
 

Methods in jfun.parsec that return types with arguments of type TypedToken
static FromString<TypedToken<TokenType>> String2TokenWord.instance()
          Get an instance of this implementation.
 

Uses of TypedToken in jfun.parsec.tokens
 

Subclasses of TypedToken in jfun.parsec.tokens
 class MyToken
          Deprecated. 
 class TokenDecimal
          Deprecated. 
 class TokenInteger
          Deprecated. 
 class TokenReserved
          Deprecated. 
 class TokenWord
          Deprecated. 
 

Methods in jfun.parsec.tokens that return TypedToken
static
<T> TypedToken<T>
Tokens.createTypedToken(java.lang.String text, T type)
          Create a typed token.
 

Methods in jfun.parsec.tokens with parameters of type TypedToken
 boolean TypedToken.equals(TypedToken other)