Package com.google.common.base
Class Joiner
- java.lang.Object
-
- com.google.common.base.Joiner
-
@GwtCompatible public class Joiner extends java.lang.Object
An object which joins pieces of text (specified as an array,Iterable
, varargs or even aMap
) with a separator. It either appends the results to anAppendable
or returns them as aString
. Example:Joiner joiner = Joiner.on("; ").skipNulls(); . . . return joiner.join("Harry", null, "Ron", "Hermione");
This returns the string
"Harry; Ron; Hermione"
. Note that all input elements are converted to strings usingObject.toString()
before being appended.If neither
skipNulls()
noruseForNull(String)
is specified, the joining methods will throwNullPointerException
if any given element is null.Warning: joiner instances are always immutable; a configuration method such as
useForNull
has no effect on the instance it is invoked on! You must store and use the new joiner instance returned by the method. This makes joiners thread-safe, and safe to store asstatic final
constants.{ @code // Bad! Do not do this! Joiner joiner = Joiner.on(','); joiner.skipNulls(); // does nothing! return joiner.join("wrong", null, "wrong"); }
See the Guava User Guide article on
Joiner
.- Since:
- 2.0 (imported from Google Collections Library)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Joiner.MapJoiner
An object that joins map entries in the same manner asJoiner
joins iterables and arrays.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <A extends java.lang.Appendable>
AappendTo(A appendable, java.lang.Iterable<?> parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, toappendable
.<A extends java.lang.Appendable>
AappendTo(A appendable, java.lang.Object[] parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, toappendable
.<A extends java.lang.Appendable>
AappendTo(A appendable, java.lang.Object first, java.lang.Object second, java.lang.Object... rest)
Appends toappendable
the string representation of each of the remaining arguments.<A extends java.lang.Appendable>
AappendTo(A appendable, java.util.Iterator<?> parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, toappendable
.java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder, java.lang.Iterable<?> parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, tobuilder
.java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder, java.lang.Object[] parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, tobuilder
.java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder, java.lang.Object first, java.lang.Object second, java.lang.Object... rest)
Appends tobuilder
the string representation of each of the remaining arguments.java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder, java.util.Iterator<?> parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, tobuilder
.java.lang.String
join(java.lang.Iterable<?> parts)
Returns a string containing the string representation of each ofparts
, using the previously configured separator between each.java.lang.String
join(java.lang.Object[] parts)
Returns a string containing the string representation of each ofparts
, using the previously configured separator between each.java.lang.String
join(java.lang.Object first, java.lang.Object second, java.lang.Object... rest)
Returns a string containing the string representation of each argument, using the previously configured separator between each.java.lang.String
join(java.util.Iterator<?> parts)
Returns a string containing the string representation of each ofparts
, using the previously configured separator between each.static Joiner
on(char separator)
Returns a joiner which automatically placesseparator
between consecutive elements.static Joiner
on(java.lang.String separator)
Returns a joiner which automatically placesseparator
between consecutive elements.Joiner
skipNulls()
Returns a joiner with the same behavior as this joiner, except automatically skipping over any provided null elements.Joiner
useForNull(java.lang.String nullText)
Returns a joiner with the same behavior as this one, except automatically substitutingnullText
for any provided null elements.Joiner.MapJoiner
withKeyValueSeparator(java.lang.String keyValueSeparator)
Returns aMapJoiner
using the given key-value separator, and the same configuration as thisJoiner
otherwise.
-
-
-
Method Detail
-
on
public static Joiner on(java.lang.String separator)
Returns a joiner which automatically placesseparator
between consecutive elements.
-
on
public static Joiner on(char separator)
Returns a joiner which automatically placesseparator
between consecutive elements.
-
appendTo
public <A extends java.lang.Appendable> A appendTo(A appendable, java.lang.Iterable<?> parts) throws java.io.IOException
Appends the string representation of each ofparts
, using the previously configured separator between each, toappendable
.- Throws:
java.io.IOException
-
appendTo
public <A extends java.lang.Appendable> A appendTo(A appendable, java.util.Iterator<?> parts) throws java.io.IOException
Appends the string representation of each ofparts
, using the previously configured separator between each, toappendable
.- Throws:
java.io.IOException
- Since:
- 11.0
-
appendTo
public final <A extends java.lang.Appendable> A appendTo(A appendable, java.lang.Object[] parts) throws java.io.IOException
Appends the string representation of each ofparts
, using the previously configured separator between each, toappendable
.- Throws:
java.io.IOException
-
appendTo
public final <A extends java.lang.Appendable> A appendTo(A appendable, @Nullable java.lang.Object first, @Nullable java.lang.Object second, java.lang.Object... rest) throws java.io.IOException
Appends toappendable
the string representation of each of the remaining arguments.- Throws:
java.io.IOException
-
appendTo
public final java.lang.StringBuilder appendTo(java.lang.StringBuilder builder, java.lang.Iterable<?> parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, tobuilder
. Identical toappendTo(Appendable, Iterable)
, except that it does not throwIOException
.
-
appendTo
public final java.lang.StringBuilder appendTo(java.lang.StringBuilder builder, java.util.Iterator<?> parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, tobuilder
. Identical toappendTo(Appendable, Iterable)
, except that it does not throwIOException
.- Since:
- 11.0
-
appendTo
public final java.lang.StringBuilder appendTo(java.lang.StringBuilder builder, java.lang.Object[] parts)
Appends the string representation of each ofparts
, using the previously configured separator between each, tobuilder
. Identical toappendTo(Appendable, Iterable)
, except that it does not throwIOException
.
-
appendTo
public final java.lang.StringBuilder appendTo(java.lang.StringBuilder builder, @Nullable java.lang.Object first, @Nullable java.lang.Object second, java.lang.Object... rest)
Appends tobuilder
the string representation of each of the remaining arguments. Identical toappendTo(Appendable, Object, Object, Object...)
, except that it does not throwIOException
.
-
join
public final java.lang.String join(java.lang.Iterable<?> parts)
Returns a string containing the string representation of each ofparts
, using the previously configured separator between each.
-
join
public final java.lang.String join(java.util.Iterator<?> parts)
Returns a string containing the string representation of each ofparts
, using the previously configured separator between each.- Since:
- 11.0
-
join
public final java.lang.String join(java.lang.Object[] parts)
Returns a string containing the string representation of each ofparts
, using the previously configured separator between each.
-
join
public final java.lang.String join(@Nullable java.lang.Object first, @Nullable java.lang.Object second, java.lang.Object... rest)
Returns a string containing the string representation of each argument, using the previously configured separator between each.
-
useForNull
@CheckReturnValue public Joiner useForNull(java.lang.String nullText)
Returns a joiner with the same behavior as this one, except automatically substitutingnullText
for any provided null elements.
-
skipNulls
@CheckReturnValue public Joiner skipNulls()
Returns a joiner with the same behavior as this joiner, except automatically skipping over any provided null elements.
-
withKeyValueSeparator
@CheckReturnValue public Joiner.MapJoiner withKeyValueSeparator(java.lang.String keyValueSeparator)
Returns aMapJoiner
using the given key-value separator, and the same configuration as thisJoiner
otherwise.
-
-