Interface for resolving string values to their actual values.
This interface is used to resolve string values to their actual values, typically for configuration properties. Implementations may perform various operations such as environment variable lookups, property expansion, or custom value resolution logic.
Example usage:
class MyStringValueResolver implements StringValueResolver {
@override
String? resolve(String value) {
// Custom resolution logic
return value;
}
}
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
resolve(
String value) → String? - Resolve the given String value, for example resolving placeholders.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited