Interface | Description |
---|---|
FromStringConverter<T> |
Interface defining conversion from a
String . |
StringConverter<T> |
Interface defining conversion to and from a
String . |
StringConverterFactory |
Factory for
StringConverter that allows converters to be
created dynamically or easily initialised. |
ToStringConverter<T> |
Interface defining conversion to a
String . |
TypedStringConverter<T> |
Interface defining conversion to and from a
String together with the type. |
Class | Description |
---|---|
AbstractTypeStringConverter |
Parse the string format of Guava TypeToken.
|
AnnotationStringConverterFactory |
Factory for
StringConverter looking up annotations. |
EnumStringConverterFactory |
Factory for
StringConverter looking up enums. |
MethodConstructorStringConverter<T> |
Conversion to and from a string using a toString method and a fromString constructor.
|
MethodsStringConverter<T> |
Conversion to and from a string using two methods.
|
ReflectionStringConverter<T> |
Conversion to and from a string using reflection.
|
RenameHandler |
A general purpose utility for registering renames.
|
StringConvert |
Manager for conversion to and from a
String , acting as the main client interface. |
TypedAdapter<T> |
Adapts
StringConverter to TypedStringConverter . |
TypeStringConverter |
Parse the string format of Type via Guava TypeToken.
|
TypeTokenStringConverter |
Parse the string format of Guava TypeToken.
|
Enum | Description |
---|---|
JDKStringConverter |
Conversion between JDK classes and a
String . |
Annotation Type | Description |
---|---|
FromString |
Annotation used to mark a method or constructor as being suitable for converting
an object from a
String . |
FromStringFactory |
Annotation used on a type to indicate that another class, the factory,
provides the 'from string' method.
|
ToString |
Annotation used to mark a method as being suitable for converting an
object to a standard format
String . |