Uses of Class
org.codehaus.commons.compiler.util.StringPattern
Packages that use StringPattern
Package
Description
Utility functionality for this project.
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 StringPatternModifier and TypeFieldDescriptionstatic final StringPattern[]
StringPattern.PATTERNS_ALL
AStringPattern
that matches any subject.static final StringPattern[]
StringPattern.PATTERNS_NONE
AStringPattern
that matches no subject whatsoever.Methods in org.codehaus.commons.compiler.util that return StringPatternModifier and TypeMethodDescriptionstatic StringPattern[]
StringPattern.parseCombinedPattern
(String combinedPattern) Parses a "combined pattern" into an array ofStringPattern
s.Methods in org.codehaus.commons.compiler.util with parameters of type StringPatternModifier and TypeMethodDescriptionstatic boolean
StringPattern.matches
(StringPattern[] patterns, 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 StringPatternModifier and TypeFieldDescriptionstatic final 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 final StringPattern[]
FilterWarningHandler.handlePatterns
Constructors in org.codehaus.janino with parameters of type StringPatternModifierConstructorDescriptionCompiler
(File[] sourcePath, File[] classPath, File[] extDirs, File[] bootClassPath, File destinationDirectory, String characterEncoding, boolean verbose, boolean debugSource, boolean debugLines, boolean debugVars, StringPattern[] warningHandlePatterns, boolean rebuild) Deprecated.FilterWarningHandler
(StringPattern[] handlePatterns, WarningHandler delegate)
Compiler()
and the various configuration setters instead