You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ is stripped out by ConfigurationPropertyName.adapt().
/** * Create a {@link ConfigurationPropertyName} by adapting the given source. The name * is split into elements around the given {@code separator}. This method is more * lenient than {@link #of} in that it allows mixed case names and '{@code _}' * characters. Other invalid characters are stripped out during parsing. * <p> * The {@code elementValueProcessor} function may be used if additional processing is * required on the extracted element values. * @param name the name to parse * @param separator the separator used to split the name * @param elementValueProcessor a function to process element values * @return a {@link ConfigurationPropertyName} */staticConfigurationPropertyNameadapt(CharSequencename, charseparator,
Function<CharSequence, CharSequence> elementValueProcessor) {
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
See spring-projects/spring-kafka#714
$
is stripped out byConfigurationPropertyName.adapt()
.The text was updated successfully, but these errors were encountered: