Package com.day.util

Class FileExpander.BaseFilter

  • All Implemented Interfaces:
    java.io.FileFilter
    Enclosing class:
    FileExpander

    public static class FileExpander.BaseFilter
    extends java.lang.Object
    implements java.io.FileFilter
    The BaseFilter class is an abstract base class for the file and directory matcher class, which accepts files based on globbing patterns.
    Since:
    coati Audience core
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(java.io.File pathname)
      Returns true if the name of the file matches the globbing pattern.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • accept

        public boolean accept​(java.io.File pathname)
        Returns true if the name of the file matches the globbing pattern.
        Specified by:
        accept in interface java.io.FileFilter