Class FileExtensionFilter

  • All Implemented Interfaces:
    Filter<java.io.File>

    @Deprecated
    public class FileExtensionFilter
    extends java.lang.Object
    implements Filter<java.io.File>
    Deprecated.
    See Filter
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String[] extensions
      Deprecated.
       
      protected boolean ignoreCase
      Deprecated.
       
    • Constructor Summary

      Constructors 
      Constructor Description
      FileExtensionFilter​(boolean ignoreCase, java.lang.String... extensions)
      Deprecated.
      Matches any files with the given extensions, optionally ignoring case.
      FileExtensionFilter​(java.lang.String... extensions)
      Deprecated.
      Matches any files with the given extensions, ignoring case
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean filter​(java.io.File file)
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • extensions

        protected final java.lang.String[] extensions
        Deprecated.
      • ignoreCase

        protected final boolean ignoreCase
        Deprecated.
    • Constructor Detail

      • FileExtensionFilter

        public FileExtensionFilter​(java.lang.String... extensions)
        Deprecated.
        Matches any files with the given extensions, ignoring case
      • FileExtensionFilter

        public FileExtensionFilter​(boolean ignoreCase,
                                   java.lang.String... extensions)
        Deprecated.
        Matches any files with the given extensions, optionally ignoring case.
    • Method Detail

      • filter

        public boolean filter​(java.io.File file)
        Deprecated.
        Specified by:
        filter in interface Filter<java.io.File>