serialization 3.0.1 API
This module holds serialization utilities.
This module is not meant to be imported directly. It will be included by using any other part of the toolkit. However, if you only want to use the utilities, logging or serialization (i.e., for a desktop application), you can import it with the following code:
=== "build.gradle"
```groovy
repositories {
mavenCentral()
}
implementation("com.hexagonkt:serialization:$hexagonVersion")
```=== "pom.xml"
```xml
<dependency><groupId>com.hexagonkt</groupId><artifactId>serialization</artifactId><version>$hexagonVersion</version></dependency>
```TODO Document module exposed ports:
SerializationFormat
The core module has utilities to serialize/parse data classes to JSON and YAML. Read the following snippet for details:
See: Description
| Package | Description |
|---|---|
| com.hexagonkt.serialization | Parse/serialize data in different formats to class instances. |