Package com.google.common.jimfs
Class GlobToRegex.State
- java.lang.Object
-
- com.google.common.jimfs.GlobToRegex.State
-
- Enclosing class:
- GlobToRegex
private abstract static class GlobToRegex.State extends java.lang.ObjectConverter state.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateState()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) voidfinish(GlobToRegex converter)Called after all characters have been read.(package private) abstract voidprocess(GlobToRegex converter, char c)Process the next character with the current state, transitioning the converter to a new state if necessary.
-
-
-
Method Detail
-
process
abstract void process(GlobToRegex converter, char c)
Process the next character with the current state, transitioning the converter to a new state if necessary.
-
finish
void finish(GlobToRegex converter)
Called after all characters have been read.
-
-