-
Returns a converter whose convert method applies secondConverter to the result
of this converter.
Returns a serializable Converter that converts strings from this format to
targetFormat.
Converter.from(Function<? super A,? extends B> forwardFunction,
Function<? super B,? extends A> backwardFunction)
Returns a converter based on separate forward and backward functions.
Returns a serializable converter that always converts or reverses an object to itself.
Returns the reversed view of this converter, which converts this.convert(a) back to a
value roughly equivalent to a.
Returns a serializable converter that converts between strings and enum values of type
enumClass using Enum#valueOf(Class, String) and Enum#name().
Returns a converter whose convert method applies secondConverter to the result
of this converter.