Uses of Interface
org.jparsec.TokenMap
-
Packages that use TokenMap Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of TokenMap in org.jparsec
Methods in org.jparsec that return TokenMap Modifier and Type Method Description (package private) static TokenMap<java.lang.String>
Terminals. fromFragment(java.lang.Object... tags)
Returns aTokenMap
object that only recognizesTokens.Fragment
token values tagged with one oftags
.(package private) static TokenMap<Token>
InternalFunctors. tokenWithSameValue(java.lang.Object value)
Methods in org.jparsec with parameters of type TokenMap Modifier and Type Method Description static <T> Parser<T>
Parsers. token(TokenMap<? extends T> fromToken)
Checks the current token with thefromToken
object.
-