- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for PatternFilenameFilter (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/io/PatternFilenameFilter.java
@J2ktIncompatible @GwtIncompatible public final class PatternFilenameFilter implements FilenameFilter { private final Pattern pattern; /** * Constructs a pattern file name filter object. * * @param patternStr the pattern string on which to filter file names * @throws PatternSyntaxException if pattern compilation fails (runtime) */ public PatternFilenameFilter(String patternStr) { this(Pattern.compile(patternStr));Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 2.7K bytes - Click Count (1) -
android/guava-tests/test/com/google/common/io/PatternFilenameFilterTest.java
// The reason that we skip this method is discussed in a comment on the method. tester.ignore(PatternFilenameFilter.class.getMethod("accept", File.class, String.class)); tester.testInstanceMethods(new PatternFilenameFilter(".*"), Visibility.PACKAGE); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 2.1K bytes - Click Count (0)