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

pureconfig.module.hadoop.package.scala Maven / Gradle / Ivy

The newest version!
package pureconfig.module

import scala.util.Try

import _root_.org.apache.hadoop.fs.Path

import pureconfig.ConfigConvert

/** `ConfigConvert` instances for Hadoop data structures.
  */
package object hadoop {

  implicit val pathConvert: ConfigConvert[Path] =
    ConfigConvert.viaNonEmptyStringTry[Path](s => Try(new Path(s)), _.toString)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy