Creates an instance of ToStringHelper. This is helpful for implementing Object#toString(). Specification by example: // Returns "ClassName{" Objects.toStringHelper(this) .toString(); // Returns "ClassName{x=1}" Objects.toStringHelper(this) .a
(Object self)
| 128 | */ |
| 129 | |
| 130 | @Deprecated |
| 131 | public static ToStringHelper toStringHelper(Object self) { |
| 132 | return new ToStringHelper(self.getClass().getSimpleName()); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Creates an instance of {@link ToStringHelper} in the same manner as |
nothing calls this directly
no test coverage detected