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 @NotNull ValueEncoderValueEncoder.andThen(@NotNull ValueEncoder after) Returns a composed encoder that first applies this encoder to its input, and then applies theafterencoder to the result.default @NotNull ValueEncoderValueEncoder.compose(@NotNull 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 @NotNull ValueEncoderValueEncoder.andThen(@NotNull ValueEncoder after) Returns a composed encoder that first applies this encoder to its input, and then applies theafterencoder to the result.default @NotNull ValueEncoderValueEncoder.compose(@NotNull ValueEncoder before) Returns a composed encoder that first applies thebeforeencoder to its input, and then applies this encoder to the result.MutableConfigBuilder.withEncoder(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 ValueEncoderMutableConfigOptions.encoderThe configuration properties values encoder.Methods in dev.orne.config.impl that return ValueEncoderModifier and TypeMethodDescriptionprotected @NotNull ValueEncoderAbstractMutableConfig.getEncoder()Returns the configuration properties values encoder.MutableConfigOptions.getEncoder()Returns the configuration properties values encoder.Methods in dev.orne.config.impl with parameters of type ValueEncoderModifier and TypeMethodDescriptionvoidMutableConfigOptions.setEncoder(ValueEncoder encoder) Sets the configuration properties values encoder.AbstractMutableConfigBuilderImpl.withEncoder(ValueEncoder encoder) Sets the configuration properties values encoder.