object FileVirtualFile extends (File) ⇒ FileVirtualFile
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FileVirtualFile
- Function1
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
andThen[A](g: (FileVirtualFile) ⇒ A): (File) ⇒ A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
apply(f: File): FileVirtualFile
- Definition Classes
- FileVirtualFile → Function1
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
compose[A](g: (A) ⇒ File): (A) ⇒ FileVirtualFile
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
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()
-
def
hasExtension(file: File, ext: String): Boolean
Tests whether the given file has the specified extension.
Tests whether the given file has the specified extension. Extension contain the '.', so a typical value for
ext
would be ".js". The comparison is case-sensitive. -
def
hashCode(): Int
- 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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
withExtension(file: File, oldExt: String, newExt: String): File
Returns a new file with the same path as the given file but a different extension.
Returns a new file with the same path as the given file but a different extension. Extension contain the '.', so a typical value for
ext
would be ".js". Precondition: hasExtension(file, oldExt) -
def
withName(file: File, newName: String): File
Returns a new file with the same parent as the given file but a different name.