| java.lang.Object | |
| ↳ | com.google.gdata.util.common.base.Joiner.MapJoiner |
An object that joins map entries in the same manner as Joiner joins
iterables and arrays.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| joiner | |||||||||||
| keyValueSeparator | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Appends the string representation of each entry of
map, using the
previously configured separator and key-value separator, to builder. | |||||||||||
Appends the string representation of each entry of
map, using the
previously configured separator and key-value separator, to appendable. | |||||||||||
Returns a string containing the string representation of each entry of
map, using the previously configured separator and key-value
separator. | |||||||||||
Returns a map joiner with the same behavior as this one, except
automatically substituting
nullText for any provided null keys or
values. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Appends the string representation of each entry of map, using the
previously configured separator and key-value separator, to builder. Identical to appendTo(Appendable, Map), except that it
does not throw IOException.
| builder | |
|---|---|
| map |
Appends the string representation of each entry of map, using the
previously configured separator and key-value separator, to appendable.
| appendable | |
|---|---|
| map |
| IOException |
|---|
Returns a string containing the string representation of each entry of
map, using the previously configured separator and key-value
separator.
| map |
|---|
Returns a map joiner with the same behavior as this one, except
automatically substituting nullText for any provided null keys or
values.
| nullText |
|---|