Uses of Class
com.google.common.jimfs.GlobToRegex.State
-
-
Uses of GlobToRegex.State in com.google.common.jimfs
Fields in com.google.common.jimfs declared as GlobToRegex.State Modifier and Type Field Description private static GlobToRegex.State
GlobToRegex. BRACKET
State inside [brackets], but not at the first character inside the brackets.private static GlobToRegex.State
GlobToRegex. BRACKET_FIRST_CHAR
State immediately following the reading of a [.private static GlobToRegex.State
GlobToRegex. CURLY_BRACE
State inside {curly braces}.private static GlobToRegex.State
GlobToRegex. ESCAPE
State following the reading of a single \.private static GlobToRegex.State
GlobToRegex. NORMAL
Normal state.private static GlobToRegex.State
GlobToRegex. STAR
State following the reading of a single *.Fields in com.google.common.jimfs with type parameters of type GlobToRegex.State Modifier and Type Field Description private java.util.Deque<GlobToRegex.State>
GlobToRegex. states
Methods in com.google.common.jimfs that return GlobToRegex.State Modifier and Type Method Description private GlobToRegex.State
GlobToRegex. currentState()
Returns the current state.Methods in com.google.common.jimfs with parameters of type GlobToRegex.State Modifier and Type Method Description private void
GlobToRegex. pushState(GlobToRegex.State state)
Enters the given state.
-