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_PATTERNSThe default value for thewarningHandlerPatternsparameter 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_ALLAStringPatternthat matches any subject.static StringPattern[]StringPattern. PATTERNS_NONEAStringPatternthat 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 ofStringPatterns.Methods in org.codehaus.janino.util with parameters of type StringPattern Modifier and Type Method Description static booleanStringPattern. matches(StringPattern[] patterns, String text)Match a giventextagainst an array ofStringPatterns (which was typically created byparseCombinedPattern(String).
-