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

com.opdar.gulosity.serializable.GeometrySerializable Maven / Gradle / Ivy

The newest version!
package com.opdar.gulosity.serializable;

import com.opdar.gulosity.utils.BufferUtils;

import java.nio.ByteBuffer;

/**
 * Created by Shey on 2016/8/27.
 */
public class GeometrySerializable extends JavaSerializable {
    public GeometrySerializable(int type) {
        super(type);
    }

    @Override
    public byte[] getValue(int meta, ByteBuffer buffer) {
        int len = (int) BufferUtils.readLong(buffer,meta);
        return BufferUtils.readFixedData(buffer,len);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy