Uses of Interface
org.tquadrat.foundation.lang.Stringer
Packages that use Stringer
Package
Description
Some general language extensions provided by the Foundation
Library.
-
Uses of Stringer in org.tquadrat.foundation.lang
Fields in org.tquadrat.foundation.lang declared as StringerModifier and TypeFieldDescriptionStringer.BASE_STRINGERAn implementation ofStringerthat produces an output that looks like that from the default implementation ofObject.toString()static final Stringer<byte[]> Stringer.BYTEARRAY_STRINGERAn implementation ofStringerforbytearrays.Stringer.CLASS_STRINGERStringer.DEFAULT_STRINGERA genericStringerimplementation that delegates toObjects.toString(Object).Stringer.FILEOBJECT_STRINGERGenericStringConverter.m_StringerThe stringer.Stringer.OBJECT_STRINGERAStringerimplementation that callsString.format( "%s", o )for an objectoif that implements the interfaceFormattable, otherwise it delegates toObjects.toString(Object).Stringer.OBJECTCLASS_STRINGERAn implementation ofStringerthat returns the name of the object's class instead of a representation of the object's value.Stringer.OPTIONAL_STRINGERStringer.STRING_STRINGERStringer.URL_STRINGERMethods in org.tquadrat.foundation.lang that return StringerModifier and TypeMethodDescriptionstatic <A> Stringer<A> Stringer.fromStringConverter(StringConverter<? super A> stringConverter) Creates aStringerfor the given instance ofStringConverter.static <A> Stringer<A> Stringer.wrapFunction(Function<? super A, String> function) Wraps a function that returns a String to an argument stringer.Methods in org.tquadrat.foundation.lang with parameters of type StringerModifier and TypeMethodDescriptionStringer.asFunction(Stringer<? super A> stringer) Returns the givenStringeras an instance ofFunction.default StringLazy.getAsString(Stringer<? super T> stringer) Returns the value for this instance ofLazyas a String that is generated by the providedStringer.static final <T> StringConstructors in org.tquadrat.foundation.lang with parameters of type StringerModifierConstructorDescriptionGenericStringConverter(Function<? extends CharSequence, T> parser, Stringer<T> stringer) Creates a newGenericStringConverterinstance.
