Uses of Class
org.codehaus.commons.compiler.util.StringPattern
-
Packages that use StringPattern Package Description org.codehaus.commons.compiler.util Utility functionality for this project.org.codehaus.janino The core of the Janino Java compiler. -
-
Uses of StringPattern in org.codehaus.commons.compiler.util
Fields in org.codehaus.commons.compiler.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.commons.compiler.util that return StringPattern Modifier and Type Method Description static StringPattern[]
StringPattern. parseCombinedPattern(java.lang.String combinedPattern)
Parses a "combined pattern" into an array ofStringPattern
s.Methods in org.codehaus.commons.compiler.util with parameters of type StringPattern Modifier and Type Method Description static boolean
StringPattern. matches(StringPattern[] patterns, java.lang.String text)
Matchs a giventext
against an array ofStringPattern
s (which was typically created byparseCombinedPattern(String)
. -
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 the warningHandlerPatterns 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[] sourcePath, java.io.File[] classPath, java.io.File[] extDirs, java.io.File[] bootClassPath, java.io.File destinationDirectory, java.lang.String characterEncoding, boolean verbose, boolean debugSource, boolean debugLines, boolean debugVars, StringPattern[] warningHandlePatterns, boolean rebuild)
Deprecated.UseCompiler()
and the various configuration setters insteadFilterWarningHandler(StringPattern[] handlePatterns, WarningHandler delegate)
-