Uses of Interface
dev.orne.config.ValueDecorator
Packages that use ValueDecorator
Package
Description
Configuration management system.
Internal implementations of configuration instances.
-
Uses of ValueDecorator in dev.orne.config
Fields in dev.orne.config declared as ValueDecoratorModifier and TypeFieldDescriptionstatic final ValueDecoratorValueDecorator.DEFAULTDefault identity configuration property value decorator.Methods in dev.orne.config that return ValueDecoratorModifier and TypeMethodDescriptiondefault @NotNull ValueDecoratorValueDecorator.andThen(@NotNull ValueDecorator after) Returns a composed decorator that first applies this decorator to its input, and then applies theafterdecorator to the result.default @NotNull ValueDecoratorValueDecorator.compose(@NotNull ValueDecorator before) Returns a composed decorator that first applies thebeforedecorator to its input, and then applies this decorator to the result.Methods in dev.orne.config with parameters of type ValueDecoratorModifier and TypeMethodDescriptiondefault @NotNull ValueDecoratorValueDecorator.andThen(@NotNull ValueDecorator after) Returns a composed decorator that first applies this decorator to its input, and then applies theafterdecorator to the result.default @NotNull ValueDecoratorValueDecorator.compose(@NotNull ValueDecorator before) Returns a composed decorator that first applies thebeforedecorator to its input, and then applies this decorator to the result.ConfigBuilder.withDecorator(ValueDecorator decorator) Sets the configuration properties values decorator. -
Uses of ValueDecorator in dev.orne.config.impl
Classes in dev.orne.config.impl that implement ValueDecoratorModifier and TypeClassDescriptionclassStringSubstitutorbased configuration property values variable resolver.Methods in dev.orne.config.impl that return ValueDecoratorModifier and TypeMethodDescriptionprotected @NotNull ValueDecoratorAbstractConfig.getDecorator()Returns the read configuration properties values decorator.ConfigOptions.getDecorator()Returns the configuration properties values decorator.Methods in dev.orne.config.impl with parameters of type ValueDecoratorModifier and TypeMethodDescriptionvoidConfigOptions.setDecorator(ValueDecorator decorator) Sets the configuration properties values decorator.AbstractConfigBuilderImpl.withDecorator(ValueDecorator decorator) Sets the configuration properties values decorator.