com.infomaximum.database.utils.key.Key Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
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