Package-level declarations

This package provides classes and interfaces related to conversion of objects into a string form and back.

Types

Link copied to clipboard
public abstract class FnStringifier<T> extends SerializableStringifier<T>
Abstract base for stringifiers that convert values using function objects.
Link copied to clipboard
Thrown when a string conversion operation encounters a type for which there is no registered Stringifier.
Link copied to clipboard
public final class Registrar
Registers passed stringifiers at the StringifierRegistry.
Link copied to clipboard
public abstract class SerializableStringifier<T> extends Stringifier<T> implements Serializable
Abstract base serializable stringifiers.
Link copied to clipboard
public abstract class Stringifier<T>
Serves as converter from I to String with an associated reverse function from String to I.
Link copied to clipboard
public final class StringifierRegistry
The registry of converters of types to their string representations.
Link copied to clipboard
public final class Stringifiers
Utility class for working with Stringifiers.