Class GlobToRegex.State

java.lang.Object
com.google.common.jimfs.GlobToRegex.State
Enclosing class:
GlobToRegex

private abstract static class GlobToRegex.State extends Object
Converter state.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (package private) void
    finish(GlobToRegex converter)
    Called after all characters have been read.
    (package private) abstract void
    process(GlobToRegex converter, char c)
    Process the next character with the current state, transitioning the converter to a new state if necessary.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • State

      private State()
  • Method Details

    • 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.