Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package ensime
    Definition Classes
    org
  • package util
    Definition Classes
    ensime
  • package ensimefile
    Definition Classes
    util
  • package enums
    Definition Classes
    util
  • package file

    Decorate java.io.File with functionality from common utility packages, which would otherwise be verbose/ugly to call directly.

    Decorate java.io.File with functionality from common utility packages, which would otherwise be verbose/ugly to call directly.

    Its nicer to put conveniences for working with File here instead of using static accessors from J2SE or Guava.

    NOTE: prefer NIO via the path utilities.

    Definition Classes
    util
  • RichFile
  • package fileobject

    Adds functionality to the Apache VFS FileObject.

    Adds functionality to the Apache VFS FileObject.

    Definition Classes
    util
  • package io

    NOTE: prefer NIO via the path utilities.

    NOTE: prefer NIO via the path utilities.

    Definition Classes
    util
  • package list
    Definition Classes
    util
  • package map
    Definition Classes
    util
  • package option
    Definition Classes
    util
  • package path

    Idiomatic scala methods for Path.

    Idiomatic scala methods for Path.

    This is considered a low-level API and may be made private, prefer the more typesafe EnsimeFile hierarchy.

    Definition Classes
    util
  • package sourcefile

    Functionality for the SourceFileInfo family.

    Functionality for the SourceFileInfo family.

    Definition Classes
    util
  • package stringymap
    Definition Classes
    util

package file

Decorate java.io.File with functionality from common utility packages, which would otherwise be verbose/ugly to call directly.

Its nicer to put conveniences for working with File here instead of using static accessors from J2SE or Guava.

NOTE: prefer NIO via the path utilities.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. file
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type File = java.io.File
  2. implicit final class RichFile extends AnyVal

Value Members

  1. def File(name: String): File

    Convenience for creating Files (which we do a lot), but has the caveat that static methods on java.io.File can no longer be accessed, so it must be imported like:

    Convenience for creating Files (which we do a lot), but has the caveat that static methods on java.io.File can no longer be accessed, so it must be imported like:

    java.io.{ File => JFile }

  2. def withTempDir[T](a: (File) ⇒ T): T
  3. def withTempFile[T](a: (File) ⇒ T): T

Inherited from AnyRef

Inherited from Any

Ungrouped