Skip to content

A JSON serialize/deserialize util for bukkit's ConfigurationSerialization.

License

Notifications You must be signed in to change notification settings

CarmJos/BukkitJSONSerializer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BukkitJSONSerializer

version License workflow CodeFactor CodeSize

A JSON serialize/deserialize util for bukkit's ConfigurationSerialization.

Usage

Basic usage

First, we should get the serializer instance or create a new one.

BukkitJSONSerializer serializer = BukkitJSONSerializer.get();

Then, we could use serializeToJSON(ConfigurationSerializable) to serialize a object to JSON.

Location location = new Location(Bukkit.getWorlds().get(0), -100.5, 100, 105.5);
String serialized = serializer.serializeToJSON(location);
// -> {"world":"world","x":-100.5,"y":100,"z":105.5,"yaw":0.0,"pitch":0.0}

When we need to read the object, just use deserializeJSON(json,typeClass) to deserialize the JSON string.

Location location = serializer.deserializeJSON(json, Location.class);
// Location{world=world, x=-100.5, y=100, z=105.5, pitch=0.0, yaw=0.0}

Or use deserializeSON(json,typeClass,defaultValue) if we need a default value.

JSONSerializable class

This project provided an interface JSONSerializable which provided a default method to serialize itself to JSON.

public interface JSONSerializable extends ConfigurationSerializable {

    default @NotNull String serializeToJSON() {
        return BukkitJSONSerializer.serializeToJSON(this);
    }

}

Dependency Usage

Maven dependency
<project>
    <repositories>

        <repository>
            <!--Using central repository-->
            <id>maven</id>
            <name>Maven Central</name>
            <url>https://repo1.maven.org/maven2</url>
        </repository>

        <repository>
            <!--Using github repository-->
            <id>BukkitJSONSerializer</id>
            <url>https://raw.githubusercontent.com/CarmJos/BukkitJSONSerializer/repo/</url>
        </repository>

    </repositories>

    <dependencies>

        <dependency>
            <groupId>cc.carm.lib</groupId>
            <artifactId>bukkitjsonserializer</artifactId>
            <version>[LATEST RELEASE]</version>
            <scope>compile</scope>
        </dependency>

    </dependencies>

</project>
Gradle dependency
repositories {

    mavenCentral() // Using central repository.

    // Using github repositories.
    maven { url 'https://raw.githubusercontent.com/CarmJos/BukkitJSONSerializer/repo/' }

}

dependencies {
    api "cc.carm.lib:bukkitjsonserializer:[LATEST RELEASE]"
}

Open Source License.

The project using GNU LESSER GENERAL PUBLIC LICENSE .