object ExistsFileFilter extends FileFilter with Product with Serializable
A FileFilter that selects files that exist according to java.io.File.exists.
- Alphabetic
- By Inheritance
- ExistsFileFilter
- Serializable
- Serializable
- Product
- Equals
- FileFilter
- FileFilter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- def &&(filter: FileFilter): FileFilter
Constructs a filter that accepts a
Fileif it matches both this filter and the givenfilter.Constructs a filter that accepts a
Fileif it matches both this filter and the givenfilter.- Definition Classes
- FileFilter
- def --(filter: FileFilter): FileFilter
Constructs a filter that accepts a
Fileif it matches this filter but does not match the givenfilter.Constructs a filter that accepts a
Fileif it matches this filter but does not match the givenfilter.- Definition Classes
- FileFilter
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def accept(file: File): Boolean
- Definition Classes
- ExistsFileFilter → FileFilter
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.CloneNotSupportedException])
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def unary_-: FileFilter
Constructs a filter that accepts a
Fileif it does not match this filter.Constructs a filter that accepts a
Fileif it does not match this filter.- Definition Classes
- FileFilter
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.InterruptedException])
- def ||(filter: FileFilter): FileFilter
Constructs a filter that accepts a
Fileif it matches either this filter or the givenfilter.Constructs a filter that accepts a
Fileif it matches either this filter or the givenfilter.- Definition Classes
- FileFilter