Uses of Class
com.google.common.base.Joiner
-
Packages that use Joiner Package Description com.google.common.base Basic utility libraries and interfaces.com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of Joiner in com.google.common.base
Methods in com.google.common.base that return Joiner Modifier and Type Method Description static Joiner
Joiner. on(char separator)
Returns a joiner which automatically placesseparator
between consecutive elements.static Joiner
Joiner. on(java.lang.String separator)
Returns a joiner which automatically placesseparator
between consecutive elements.Joiner
Joiner. skipNulls()
Returns a joiner with the same behavior as this joiner, except automatically skipping over any provided null elements.Joiner
Joiner. useForNull(java.lang.String nullText)
Returns a joiner with the same behavior as this one, except automatically substitutingnullText
for any provided null elements. -
Uses of Joiner in com.google.common.collect
Methods in com.google.common.collect with parameters of type Joiner Modifier and Type Method Description java.lang.String
FluentIterable. join(Joiner joiner)
Returns aString
containing all of the elements of this fluent iterable joined withjoiner
.
-