org.dbpedia.extraction.util

IOUtils

object IOUtils

TODO: modify the bzip code such that there are no run-time dependencies on commons-compress. Users should be able to use .gz files without having commons-compress on the classpath. Even better, look for several different bzip2 implementations on the classpath...

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. IOUtils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def copy(in: InputStream, out: OutputStream): Unit

    Copy all bytes from input to output.

    Copy all bytes from input to output. Don't close any stream.

  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  12. def inputStream(file: FileLike[_]): InputStream

    open input stream, wrap in unzipper stream if file suffix indicates compressed file.

  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. def outputStream(file: FileLike[_], append: Boolean = false): OutputStream

    open output stream, wrap in zipper stream if file suffix indicates compressed file.

  18. def readLines(file: FileLike[_], charset: Charset = Codec.UTF8.charSet)(proc: (String) ⇒ Unit): Unit

    open input stream, wrap in unzipper stream if file suffix indicates compressed file, wrap in reader, wrap in buffered reader, process all lines.

    open input stream, wrap in unzipper stream if file suffix indicates compressed file, wrap in reader, wrap in buffered reader, process all lines. The last value passed to proc will be null.

  19. def reader(file: FileLike[_], charset: Charset = Codec.UTF8.charSet): Reader

    open input stream, wrap in unzipper stream if file suffix indicates compressed file, wrap in reader.

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. val unzippers: Map[String, (InputStream) ⇒ InputStream]

    Map from file suffix (without "." dot) to input stream wrapper

  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def writer(file: FileLike[_], append: Boolean = false, charset: Charset = Codec.UTF8.charSet): Writer

    open output stream, wrap in zipper stream if file suffix indicates compressed file, wrap in writer.

  27. val zippers: Map[String, (OutputStream) ⇒ OutputStream]

    Map from file suffix (without "." dot) to output stream wrapper

Inherited from AnyRef

Inherited from Any

Ungrouped