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)
| 310 | */ |
| 311 | |
| 312 | @CanIgnoreReturnValue |
| 313 | public ToStringHelper addValue(@Nullable Object value) { |
| 314 | return addHolder(value); |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * Adds an unnamed value to the formatted output. |