Building Parsers with Java

Package sjm.examples.string

Class Summary
Identity An Identity function returns the input string unchanged, in response to the f() method.
LowerCase This class wraps a toLowerCase function around an instance of another StringFunction class.
ShowStringFunction Create and use a string function at runtime.
StringFunction A StringFunction implements the method f() to accept a string, apply a function to it, and return a string.
Substring This class wraps a substring function around an instance of another StringFunction class.
Trim This class wraps a trim function around an instance of another StringFunction class.
UpperCase This class wraps a toUpperCase function around an instance of another StringFunction class.
 


by Steve Metsker