package hocon
- Alphabetic
- Public
- All
Type Members
- trait BaseHoconInput extends AnyRef
- class HoconFieldInput extends HoconInput with FieldInput
- class HoconInput extends InputAndSimpleInput with BaseHoconInput
- class HoconListInput extends ListInput with BaseHoconInput
- class HoconObjectInput extends ObjectInput with BaseHoconInput
- sealed trait HoconTypeMarker[T] extends TypeMarker[T]
Value Members
-
object
ConfigMemorySizeMarker extends HoconTypeMarker[ConfigMemorySize]
TypeMarker which allows direct reading of a
ConfigMemorySize
from HoconInput in a GenCodec implementation, taking advantage of the HOCON format for size in bytes, implemented byConfig.getMemorySize
. -
object
ConfigValueMarker extends HoconTypeMarker[ConfigValue]
TypeMarker which allows you to read raw
com.typesafe.config.ConfigValue
from a HoconInput in a GenCodec implementation. -
object
ConfigValueTypeMarker extends InputMetadata[ConfigValueType]
InputMetadata marker object which allows inspection of
com.typesafe.config.ConfigValueType
on a HoconInput in a GenCodec implementation. -
object
DurationMarker extends HoconTypeMarker[Duration]
TypeMarker which allows direct reading of a
Duration
from HoconInput in a GenCodec implementation, taking advantage of the recommended HOCON format for durations, implemented byConfig.getDuration
. - object HoconInput
-
object
NumberMarker extends HoconTypeMarker[Number]
TypeMarker which allows direct reading of a
java.lang.Number
from HoconInput in a GenCodec implementation, taking advantage of the parsing implemented byConfig.getNumber
. -
object
PeriodMarker extends HoconTypeMarker[Period]
TypeMarker which allows direct reading of a
Period
from HoconInput in a GenCodec implementation, taking advantage of the HOCON format for period, implemented byConfig.getPeriod
. -
object
SizeInBytesMarker extends HoconTypeMarker[Long]
TypeMarker which allows direct reading of a size in bytes from HoconInput in a GenCodec implementation, taking advantage of the HOCON format for size in bytes, implemented by
Config.getBytes
. -
object
TemporalAmountMarker extends HoconTypeMarker[TemporalAmount]
TypeMarker which allows direct reading of a
TemporalAmount
from HoconInput in a GenCodec implementation, taking advantage of the HOCON format for period, implemented byConfig.getTemporal
.