All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infomaximum.database.utils.key.Key Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database.utils.key;

public abstract class Key {

    public static final int ID_BYTE_SIZE = Long.BYTES;

    private long id;

    public Key(long id) {
        this.id = id;
    }

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }

    public abstract byte[] pack();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy