sammwyy / class-serializer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Class Serializer

Serialize and deserialize classes into maps.

Why?

This library was intended for the transport of classes and the easy manipulation of objects. For example to use entities in projects that require it, such as a database or web server that requires a response.

Class-Serializer is designed to solve that need.

Documentation

Read the documentation here. Read docs

Installation

At the moment, the current version is 1.0.0.

🐳 Gradle

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.sammwyy:Class-Serializer:{version}'
}

🐓 Maven

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url> 
    </repository>
</repositories>

<dependency>
    <groupId>com.github.sammwyy</groupId>
    <artifactId>Class-Serializer</artifactId>
    <version>{version}</version>
</dependency>

About


Languages

Language:Java 100.0%