Uses of Interface
dev.orne.config.ValueEncoder
Packages that use ValueEncoder
Package
Description
Configuration management system.
Internal implementations of configuration instances.
-
Uses of ValueEncoder in dev.orne.config
Fields in dev.orne.config declared as ValueEncoderModifier and TypeFieldDescriptionstatic final ValueEncoderValueEncoder.DEFAULTDefault identity configuration property value encoder.Methods in dev.orne.config that return ValueEncoderModifier and TypeMethodDescriptiondefault ValueEncoderValueEncoder.andThen(ValueEncoder after) Returns a composed encoder that first applies this encoder to its input, and then applies theafterencoder to the result.default ValueEncoderValueEncoder.compose(ValueEncoder before) Returns a composed encoder that first applies thebeforeencoder to its input, and then applies this encoder to the result.Methods in dev.orne.config with parameters of type ValueEncoderModifier and TypeMethodDescriptiondefault ValueEncoderValueEncoder.andThen(ValueEncoder after) Returns a composed encoder that first applies this encoder to its input, and then applies theafterencoder to the result.default ValueEncoderValueEncoder.compose(ValueEncoder before) Returns a composed encoder that first applies thebeforeencoder to its input, and then applies this encoder to the result.MutableConfigBuilder.withEncoder(@Nullable ValueEncoder encoder) Sets the configuration properties values encoder. -
Uses of ValueEncoder in dev.orne.config.impl
Fields in dev.orne.config.impl declared as ValueEncoderModifier and TypeFieldDescriptionprotected @Nullable ValueEncoderMutableConfigOptions.encoderThe configuration properties values encoder.Methods in dev.orne.config.impl that return ValueEncoderModifier and TypeMethodDescriptionprotected ValueEncoderAbstractMutableConfig.getEncoder()Returns the configuration properties values encoder.@Nullable ValueEncoderMutableConfigOptions.getEncoder()Returns the configuration properties values encoder.Methods in dev.orne.config.impl with parameters of type ValueEncoderModifier and TypeMethodDescriptionvoidMutableConfigOptions.setEncoder(@Nullable ValueEncoder encoder) Sets the configuration properties values encoder.AbstractMutableConfigBuilderImpl.withEncoder(@Nullable ValueEncoder encoder) Sets the configuration properties values encoder.