org.firebirdsql.gds.impl.argument.ByteArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
The newest version!
/*
* Firebird Open Source JDBC Driver
*
* Distributable under LGPL license.
* You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* LGPL License for more details.
*
* This file was created by members of the firebird development team.
* All individual contributions remain the Copyright (C) of those
* individuals. Contributors to this file are either listed here or
* can be obtained from a source control history command.
*
* All rights reserved.
*/
package org.firebirdsql.gds.impl.argument;
import org.firebirdsql.encodings.Encoding;
import org.firebirdsql.gds.ParameterBuffer;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Serial;
import java.util.EnumSet;
/**
* {@link Argument} implementation for byte values.
*
* @since 5
*/
public final class ByteArgument extends TypedArgument {
private static final EnumSet SUPPORTED_ARGUMENT_TYPES =
EnumSet.of(ArgumentType.TraditionalDpb, ArgumentType.Wide, ArgumentType.ByteSpb);
@Serial
private static final long serialVersionUID = 3202369601515235550L;
private final byte value;
public ByteArgument(int type, ArgumentType argumentType, byte value) {
super(type, argumentType);
if (!SUPPORTED_ARGUMENT_TYPES.contains(argumentType)) {
throw new IllegalArgumentException("Invalid argument type: " + argumentType);
}
this.value = value;
}
public void writeTo(final OutputStream outputStream) throws IOException {
outputStream.write(getType());
writeValue(outputStream, value);
}
public int getLength() {
// 2: 1 for type + 1 for data
return 2 + argumentType.getLengthSize();
}
private void writeValue(final OutputStream outputStream, final byte value) throws IOException {
argumentType.writeLength(1, outputStream);
outputStream.write(value);
}
@Override
public int getValueAsInt() {
return value;
}
@Override
@SuppressWarnings("java:S4144")
public long getValueAsLong() {
return value;
}
@Override
public void copyTo(ParameterBuffer buffer, Encoding encoding) {
buffer.addArgument(getType(), value);
}
@Override
public boolean equals(Object other) {
if (this == other) return true;
if (!(other instanceof final ByteArgument otherByteArgument)) return false;
return this.getType() == otherByteArgument.getType() && this.value == otherByteArgument.value;
}
@Override
public int hashCode() {
int result = 41 * 23 + getType();
result = 41 * result + value;
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy