Adds an unnamed value to the formatted output. It is strongly encouraged to use #add(String, Object) instead and give value a readable name.
(@Nullable Object value)
| 315 | */ |
| 316 | |
| 317 | @CanIgnoreReturnValue |
| 318 | public ToStringHelper addValue(@Nullable Object value) { |
| 319 | return addHolder(value); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * Adds an unnamed value to the formatted output. |