Java com.google.common.base Joiner fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.base Joiner fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.base Joiner.

The text is from its open source code.

Method

AappendTo(A appendable, Iterable parts)
Appends the string representation of each of parts , using the previously configured separator between each, to appendable .
AappendTo(A appendable, Iterator parts)
Appends the string representation of each of parts , using the previously configured separator between each, to appendable .
AappendTo(A appendable, Object[] parts)
Appends the string representation of each of parts , using the previously configured separator between each, to appendable .
StringBuilderappendTo(StringBuilder builder, Iterable parts)
Appends the string representation of each of parts , using the previously configured separator between each, to builder .
StringBuilderappendTo(StringBuilder builder, Iterator parts)
Appends the string representation of each of parts , using the previously configured separator between each, to builder .
StringBuilderappendTo(StringBuilder builder, Object[] parts)
Appends the string representation of each of parts , using the previously configured separator between each, to builder .
AappendTo(A appendable, @Nullable Object first, @Nullable Object second, Object... rest)
Appends to appendable the string representation of each of the remaining arguments.
StringBuilderappendTo(StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest)
Appends to builder the string representation of each of the remaining arguments.
Stringjoin(Iterable parts)
Returns a string containing the string representation of each of parts , using the previously configured separator between each.
Stringjoin(Iterator parts)
Returns a string containing the string representation of each of parts , using the previously configured separator between each.
Stringjoin(Object[] parts)
Returns a string containing the string representation of each of parts , using the previously configured separator between each.
Stringjoin(@Nullable Object first, @Nullable Object second, Object... rest)
Returns a string containing the string representation of each argument, using the previously configured separator between each.
Joineron(String separator)
Returns a joiner which automatically places separator between consecutive elements.
Joineron(char separator)
Returns a joiner which automatically places separator between consecutive elements.
JoinerskipNulls()
Returns a joiner with the same behavior as this joiner, except automatically skipping over any provided null elements.
MapJoinerwithKeyValueSeparator(String keyValueSeparator)
Returns a MapJoiner using the given key-value separator, and the same configuration as this Joiner otherwise.