de.bytefish.pgbulkinsert.pgsql.handlers.ByteValueHandler Maven / Gradle / Ivy
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package de.bytefish.pgbulkinsert.pgsql.handlers;
import java.io.DataOutputStream;
public class ByteValueHandler extends BaseValueHandler {
@Override
protected void internalHandle(DataOutputStream buffer, final T value) throws Exception {
buffer.writeInt(1);
buffer.writeByte(value.byteValue());
}
@Override
public int getLength(T value) {
return 1;
}
}