Uses of Class
org.apache.commons.lang3.AppendableJoiner.Builder
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of AppendableJoiner.Builder in org.apache.commons.lang3
Modifier and TypeMethodDescriptionstatic <T> AppendableJoiner.Builder<T>
AppendableJoiner.builder()
Creates a new builder.AppendableJoiner.Builder.setDelimiter
(CharSequence delimiter) Sets the delimiter that separates each element.AppendableJoiner.Builder.setElementAppender
(FailableBiConsumer<Appendable, T, IOException> appender) Sets the consumer used to render each element of typeT
onto anAppendable
.AppendableJoiner.Builder.setPrefix
(CharSequence prefix) Sets the sequence of characters to be used at the beginning.AppendableJoiner.Builder.setSuffix
(CharSequence suffix) Sets the sequence of characters to be used at the end.