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

io.github.jinghui70.rainbow.dbaccess.fieldmapper.BlobByteArrayField Maven / Gradle / Ivy

There is a newer version: 5.2.11
Show newest version
package io.github.jinghui70.rainbow.dbaccess.fieldmapper;

public class BlobByteArrayField extends BlobField {

    public BlobByteArrayField() {
        super(false);
    }

    @Override
    protected byte[] getBytes(Object value) {
        return (byte[]) value;
    }

    @Override
    protected byte[] parse(byte[] bytes) {
        return bytes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy