Object Data Structure

The ODS documentation have moved to the new docs.ryandw11.com website!

Object Data Structure is a file format inspired by NBT. Everything in this file format is made of tags. ODS is not human readable, data is stored in bytes.

Usage

As stated above ODS uses tags. There are many primitive tags: StringTag, IntTag, ShortTag, LongTag, ByteTag, DoubleTag, FloatTag. There are also the ListTag and MapTag. They both store primitive tags in a list and map format respectivly. Finally there are ObjectTags. ObjectTags store other tags.

Reading the Documentation

This documentation is for all versions of ODS. Code sections will contain tabs for all of the languages officially supported by ODS. Example:

public class Example {
    public static void main(String[] args){
        System.out.println("Hello World");
    }
}

You can click on any language you would like to see the same example code. (Some sections might contain additional text / instructions due to programming language limitations.)

Last updated