io.deephaven.tuple.generated.LongByteLongTuple Maven / Gradle / Ivy
Show all versions of deephaven-engine-tuple Show documentation
package io.deephaven.tuple.generated;
import gnu.trove.map.TIntObjectMap;
import io.deephaven.tuple.CanonicalizableTuple;
import io.deephaven.tuple.serialization.SerializationUtils;
import io.deephaven.tuple.serialization.StreamingExternalizable;
import io.deephaven.util.compare.ByteComparisons;
import io.deephaven.util.compare.LongComparisons;
import org.jetbrains.annotations.NotNull;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.function.UnaryOperator;
/**
* 3-Tuple (triple) key class composed of long, byte, and long elements.
*
Generated by io.deephaven.replicators.TupleCodeGenerator.
*/
public class LongByteLongTuple implements Comparable, Externalizable, StreamingExternalizable, CanonicalizableTuple {
private static final long serialVersionUID = 1L;
private long element1;
private byte element2;
private long element3;
private transient int cachedHashCode;
public LongByteLongTuple(
final long element1,
final byte element2,
final long element3
) {
initialize(
element1,
element2,
element3
);
}
/** Public no-arg constructor for {@link Externalizable} support only. Application code should not use this! **/
public LongByteLongTuple() {
}
private void initialize(
final long element1,
final byte element2,
final long element3
) {
this.element1 = element1;
this.element2 = element2;
this.element3 = element3;
cachedHashCode = ((31 +
Long.hashCode(element1)) * 31 +
Byte.hashCode(element2)) * 31 +
Long.hashCode(element3);
}
public final long getFirstElement() {
return element1;
}
public final byte getSecondElement() {
return element2;
}
public final long getThirdElement() {
return element3;
}
@Override
public final int hashCode() {
return cachedHashCode;
}
@Override
public final boolean equals(final Object other) {
if (this == other) {
return true;
}
if (other == null || getClass() != other.getClass()) {
return false;
}
final LongByteLongTuple typedOther = (LongByteLongTuple) other;
// @formatter:off
return element1 == typedOther.element1 &&
element2 == typedOther.element2 &&
element3 == typedOther.element3;
// @formatter:on
}
@Override
public final int compareTo(@NotNull final LongByteLongTuple other) {
if (this == other) {
return 0;
}
int comparison;
// @formatter:off
return 0 != (comparison = LongComparisons.compare(element1, other.element1)) ? comparison :
0 != (comparison = ByteComparisons.compare(element2, other.element2)) ? comparison :
LongComparisons.compare(element3, other.element3);
// @formatter:on
}
@Override
public void writeExternal(@NotNull final ObjectOutput out) throws IOException {
out.writeLong(element1);
out.writeByte(element2);
out.writeLong(element3);
}
@Override
public void readExternal(@NotNull final ObjectInput in) throws IOException, ClassNotFoundException {
initialize(
in.readLong(),
in.readByte(),
in.readLong()
);
}
@Override
public void writeExternalStreaming(@NotNull final ObjectOutput out, @NotNull final TIntObjectMap cachedWriters) throws IOException {
out.writeLong(element1);
out.writeByte(element2);
out.writeLong(element3);
}
@Override
public void readExternalStreaming(@NotNull final ObjectInput in, @NotNull final TIntObjectMap cachedReaders) throws Exception {
initialize(
in.readLong(),
in.readByte(),
in.readLong()
);
}
@Override
public String toString() {
return "LongByteLongTuple{" +
element1 + ", " +
element2 + ", " +
element3 + '}';
}
@Override
public LongByteLongTuple canonicalize(@NotNull final UnaryOperator