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_ALLAStringPatternthat matches any subject.static final StringPattern[]StringPattern.PATTERNS_NONEAStringPatternthat 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 ofStringPatterns.Methods in org.codehaus.commons.compiler.util with parameters of type StringPatternModifier and TypeMethodDescriptionstatic booleanStringPattern.matches(StringPattern[] patterns, String text) Matchs a giventextagainst an array ofStringPatterns (which was typically created byStringPattern.parseCombinedPattern(String). -
Uses of StringPattern in org.codehaus.janino
Fields in org.codehaus.janino declared as StringPatternModifier and TypeFieldDescriptionstatic final StringPattern[]Compiler.DEFAULT_WARNING_HANDLE_PATTERNSThe default value for the warningHandlerPatterns parameter ofCompiler(File[], File[], File[], File[], File, String, boolean, boolean, boolean, boolean, StringPattern[], boolean).private final StringPattern[]FilterWarningHandler.handlePatternsConstructors 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) Popular values for thehandlePatternsparameter areStringPattern.PATTERNS_ALLandStringPattern.PATTERNS_NONE.
Compiler()and the various configuration setters instead