Convert a String => Option into a String => Option[ConfigValueLocation] => Either such that after application
- Some(t) becomes _ => Right(t)
- None becomes location => Left(CannotConvert(value, type, "", location)
Convert a String => Option into a String => Option[ConfigValueLocation] => Either such that after application
- Some(t) becomes _ => Right(t)
- None becomes location => Left(CannotConvert(value, type, "", location)
Convert a String => Try into a String => Option[ConfigValueLocation] => Either such that after application
- Success(t) becomes _ => Right(t)
- Failure(e) becomes location => Left(CannotConvert(value, type, e.getMessage, location)
Convert a String => Try into a String => Option[ConfigValueLocation] => Either such that after application
- Success(t) becomes _ => Right(t)
- Failure(e) becomes location => Left(CannotConvert(value, type, e.getMessage, location)
(Since version 0.6.0) The usage of Try has been deprecated. Please use ConfigReader.fromNonEmptyString instead
(Since version 0.7.0) Please use viaNonEmptyString instead
(Since version 0.7.0) Please use viaNonEmptyStringOpt instead
(Since version 0.7.0) Please use viaNonEmptyStringTry instead
(Since version 0.7.0) Please use ConfigReader.fromNonEmptyString instead
(Since version 0.7.0) Please use ConfigReader.fromNonEmptyStringOpt instead
(Since version 0.7.0) Please use ConfigReader.fromNonEmptyStringTry instead
(Since version 0.6.0) The usage of Try has been deprecated. Please use ConfigReader.fromString instead
(Since version 0.7.0) Please use viaString instead
(Since version 0.7.0) Please use viaStringOpt instead
(Since version 0.7.0) Please use viaStringTry instead
(Since version 0.7.0) Please use ConfigReader.fromString instead
(Since version 0.7.0) Please use ConfigReader.fromStringOpt instead
(Since version 0.7.0) Please use ConfigReader.fromStringTry instead
(Since version 0.6.0) The usage of Try has been deprecated. Please use viaNonEmptyString instead
(Since version 0.6.0) The usage of Try has been deprecated. Please use viaString instead
Provides methods to create ConfigConvert instances.