All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.co.cyberagent.aeromock.data.DataFileReader.scala Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
package jp.co.cyberagent.aeromock.data

import java.nio.file.Path


trait DataFileReader {

  def readFile[T >: Iterable[_]](file: Path, charset: String = "UTF-8"): T

  def deserialize[T](file: Path, `class`: Class[T], charset: String = "UTF-8"): T
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy