Uses of Interface
dev.orne.config.ValueDecoder
Packages that use ValueDecoder
Package
Description
Configuration management system.
Internal implementations of configuration instances.
-
Uses of ValueDecoder in dev.orne.config
Fields in dev.orne.config declared as ValueDecoderModifier and TypeFieldDescriptionstatic final ValueDecoderValueDecoder.DEFAULTDefault identity configuration property value decoder.Methods in dev.orne.config that return ValueDecoderModifier and TypeMethodDescriptiondefault @NotNull ValueDecoderValueDecoder.andThen(@NotNull ValueDecoder after) Returns a composed decoder that first applies this decoder to its input, and then applies theafterdecoder to the result.default @NotNull ValueDecoderValueDecoder.compose(@NotNull ValueDecoder before) Returns a composed decoder that first applies thebeforedecoder to its input, and then applies this decoder to the result.Methods in dev.orne.config with parameters of type ValueDecoderModifier and TypeMethodDescriptiondefault @NotNull ValueDecoderValueDecoder.andThen(@NotNull ValueDecoder after) Returns a composed decoder that first applies this decoder to its input, and then applies theafterdecoder to the result.default @NotNull ValueDecoderValueDecoder.compose(@NotNull ValueDecoder before) Returns a composed decoder that first applies thebeforedecoder to its input, and then applies this decoder to the result.ConfigBuilder.withDecoder(ValueDecoder encoder) Sets the configuration properties values decoder. -
Uses of ValueDecoder in dev.orne.config.impl
Methods in dev.orne.config.impl that return ValueDecoderModifier and TypeMethodDescriptionprotected @NotNull ValueDecoderAbstractConfig.getDecoder()Returns the read configuration properties values decoder.ConfigOptions.getDecoder()Returns the configuration values decoder.Methods in dev.orne.config.impl with parameters of type ValueDecoderModifier and TypeMethodDescriptionvoidConfigOptions.setDecoder(ValueDecoder decoder) Sets the configuration values decoder.AbstractConfigBuilderImpl.withDecoder(ValueDecoder decoder) Sets the configuration properties values decoder.