Performs the transformation of an object into a string representation in conformity with the Function contract, delegating to #format(Object). @deprecated Call #format(Object) instead. This method exists to make formatters easy to use when functions ar
(T object)
| 43 | * use when functions are required, but shouldn't be called directly. |
| 44 | */ |
| 45 | @SuppressWarnings("javadoc") |
| 46 | @Deprecated |
| 47 | @Override |
| 48 | public final String apply(T object) { |
| 49 | return format(object); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Formats {@code items}, one per line. Stops after {@code limit} items. |
no test coverage detected