How do you achieve case insensitive regular expression patterns in JFlex.
Using the standard (?i:) notation does not seem to work.
For example:
To match the case insensitive word "class", the regex would be (?i:class).
But this doesn't work in a JFlex specification.