Uses of Class
org.codehaus.janino.util.StringPattern
-
Packages that use StringPattern Package Description org.codehaus.janino The classes in this package pose the core of the Janino JavaTM compiler.org.codehaus.janino.tools Auxiliary command line tools related to JANINO.org.codehaus.janino.util Application-independent helper classes. -
-
Uses of StringPattern in org.codehaus.janino
Fields in org.codehaus.janino declared as StringPattern Modifier and Type Field Description static StringPattern[]
Compiler. DEFAULT_WARNING_HANDLE_PATTERNS
The default value for thewarningHandlerPatterns
parameter ofCompiler(File[], File[], File[], File[], File, String, boolean, boolean, boolean, boolean, StringPattern[], boolean)
.private StringPattern[]
FilterWarningHandler. handlePatterns
Constructors in org.codehaus.janino with parameters of type StringPattern Constructor Description Compiler(java.io.File[] optionalSourcePath, java.io.File[] classPath, java.io.File[] optionalExtDirs, java.io.File[] optionalBootClassPath, java.io.File destinationDirectory, java.lang.String optionalCharacterEncoding, boolean verbose, boolean debugSource, boolean debugLines, boolean debugVars, StringPattern[] warningHandlePatterns, boolean rebuild)
Initialize a Java™ compiler with the given parameters.FilterWarningHandler(StringPattern[] handlePatterns, WarningHandler delegate)
-
Uses of StringPattern in org.codehaus.janino.tools
Methods in org.codehaus.janino.tools with parameters of type StringPattern Modifier and Type Method Description private void
JGrep. jGrep(java.io.File[] rootDirectories, StringPattern[] directoryNamePatterns, StringPattern[] fileNamePatterns, java.util.List<JGrep.MethodInvocationTarget> methodInvocationTargets)
-
Uses of StringPattern in org.codehaus.janino.util
Fields in org.codehaus.janino.util declared as StringPattern Modifier and Type Field Description static StringPattern[]
StringPattern. PATTERNS_ALL
AStringPattern
that matches any subject.static StringPattern[]
StringPattern. PATTERNS_NONE
AStringPattern
that matches no subject whatsoever.Methods in org.codehaus.janino.util that return StringPattern Modifier and Type Method Description static StringPattern[]
StringPattern. parseCombinedPattern(java.lang.String combinedPattern)
Parse a "combined pattern" into an array ofStringPattern
s.Methods in org.codehaus.janino.util with parameters of type StringPattern Modifier and Type Method Description static boolean
StringPattern. matches(StringPattern[] patterns, java.lang.String text)
Match a giventext
against an array ofStringPattern
s (which was typically created byparseCombinedPattern(String)
.
-