Mapper interface and its implementations, as well as
auxiliary classes.See: Description
| Interface | Description |
|---|---|
| Mapper<T> |
The base interface for a configuration mapper.
|
| Class | Description |
|---|---|
| AbstractBeanMapper<T> |
An abstract
Mapper for implementations intended to load the contents of an
InputStream into user-defined beans. |
| AbstractINIMapper<T> |
An abstract
Mapper that defines a template of how to parse the contents of a
valid INI Source (e.g.: file, URL), and delegates the final object type
population to a concrete implementation. |
| INIToJSONObjectMapper |
A specialized
Mapper that loads the contents of a valid INI Source
(e.g.: file, URL) as a JSONObject. |
| INIToObjectMapper<T> |
A specialized
Mapper that loads the contents of a valid INI Source
(e.g.: file, URL) into a POJO (Plain-Old Java Object). |
| JSONObjectMapper |
A specialized
Mapper that loads the contents of a valid JSON Source
(e.g.: file, URL) as a JSONObject (json-smart JSON implementation). |
| PropertiesMapper |
A specialized
Mapper that loads the contents of a Source (e.g.: file,
URL) as Properties (a table of key-value pairs). |
| PropertiesToObjectMapper<T> |
A specialized
Mapper that loads the contents of a Source (e.g.: file,
URL) in the Properties format (a sequence of key-value pairs) and converts it
into a POJO (Plain-Old Java Object). |
| StringMapper |
A specialized
Mapper that loads the contents of a Source (e.g.: file,
URL) as a String using the JVM default Charset, typically for
testing/troubleshooting or manual handling purposes. |
This package groups the Mapper interface and its implementations, as well as
auxiliary classes.
Copyright © 2022. All rights reserved.