com.yandex.ydb.table.values.VariantValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
The newest version!
package com.yandex.ydb.table.values;
import java.util.Objects;
import com.yandex.ydb.ValueProtos;
/**
* @author Sergey Polovko
*/
public class VariantValue implements Value {
private final VariantType type;
private final Value item;
private final int typeIndex;
VariantValue(VariantType type, Value item, int typeIndex) {
this.type = type;
this.item = Objects.requireNonNull(item, "item");
this.typeIndex = typeIndex;
}
public int getTypeIndex() {
return typeIndex;
}
public Value getItem() {
return item;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VariantValue that = (VariantValue) o;
if (typeIndex != that.typeIndex) {
return false;
}
return item.equals(that.item);
}
@Override
public int hashCode() {
int h = Type.Kind.VARIANT.hashCode();
h = 31 * h + typeIndex;
return 31 * h + item.hashCode();
}
@Override
public String toString() {
return "Variant[" + typeIndex + "; " + item.toString() + ']';
}
@Override
public VariantType getType() {
return type;
}
@Override
public ValueProtos.Value toPb() {
ValueProtos.Value.Builder builder = ValueProtos.Value.newBuilder();
builder.setNestedValue(item.toPb());
builder.setVariantIndex(typeIndex);
return builder.build();
}
}