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.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)
.Constructors in org.codehaus.janino with parameters of type StringPattern Constructor Description Compiler(File[] optionalSourcePath, File[] classPath, File[] optionalExtDirs, File[] optionalBootClassPath, File destinationDirectory, 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.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(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, String text)
Match a giventext
against an array ofStringPattern
s (which was typically created byparseCombinedPattern(String)
.
-