Interface TemplateResolverStringSubstitutor<V>
-
- Type Parameters:
V
-TemplateResolver
value
- All Known Implementing Classes:
EventResolverStringSubstitutor
,StackTraceElementResolverStringSubstitutor
public interface TemplateResolverStringSubstitutor<V>
A contextualStrSubstitutor
abstraction.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StrSubstitutor
getInternalSubstitutor()
boolean
isStable()
A substitutor is stable if the replacement doesn't vary with the provided value.java.lang.String
replace(V value, java.lang.String source)
-
-
-
Method Detail
-
getInternalSubstitutor
StrSubstitutor getInternalSubstitutor()
-
isStable
boolean isStable()
A substitutor is stable if the replacement doesn't vary with the provided value. In such a case, value is always set tonull
.
-
replace
java.lang.String replace(V value, java.lang.String source)
-
-