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 ValueDecoratorValueDecorator.andThen(ValueDecorator after) Returns a composed decorator that first applies this decorator to its input, and then applies theafterdecorator to the result.default ValueDecoratorValueDecorator.compose(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 ValueDecoratorValueDecorator.andThen(ValueDecorator after) Returns a composed decorator that first applies this decorator to its input, and then applies theafterdecorator to the result.default ValueDecoratorValueDecorator.compose(ValueDecorator before) Returns a composed decorator that first applies thebeforedecorator to its input, and then applies this decorator to the result.ConfigBuilder.withDecorator(@Nullable 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 ValueDecoratorAbstractConfig.getDecorator()Returns the read configuration properties values decorator.@Nullable ValueDecoratorConfigOptions.getDecorator()Returns the configuration properties values decorator.Methods in dev.orne.config.impl with parameters of type ValueDecoratorModifier and TypeMethodDescriptionvoidConfigOptions.setDecorator(@Nullable ValueDecorator decorator) Sets the configuration properties values decorator.AbstractConfigBuilderImpl.withDecorator(@Nullable ValueDecorator decorator) Sets the configuration properties values decorator.