Interface Stringer<T>

Type Parameters:
T - The type of the argument value.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@ClassVersion(sourceVersion="$Id: Stringer.java 1060 2023-09-24 19:21:40Z tquadrat $") @FunctionalInterface @API(status=STABLE, since="0.1.0") public interface Stringer<T>

This interface defines a method to compose a String representation from arbitrary objects.

It will also provide several convenience implementations for the interface that can be used with special argument types. Currently, these are

There are no explicit stringers for the classes from the java.time package as instances of these classes have sufficient implementations of Object.toString() and are therefore already well covered by OBJECT_STRINGER. Same is true for the class Path.

This is a functional interface whose functional method is toString(Object).

Note:
  • The method toString(Object) will never return null; if called with a null argument, it will return the String "null".
    This is different to the behaviour of the toString(Object) method of an implementation of StringConverter that returns null for a null argument.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Stringer.java 1060 2023-09-24 19:21:40Z tquadrat $
Since:
0.1.0
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.lang.Stringer"

UML Diagram for "org.tquadrat.foundation.lang.Stringer"

UML Diagram for "org.tquadrat.foundation.lang.Stringer"