com.exasol.adapter.document.documentnode.holder.NullHolderNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtual-schema-common-document Show documentation
Show all versions of virtual-schema-common-document Show documentation
Common module of Exasol Virtual Schema Adapters for Document Data Sources.
The newest version!
package com.exasol.adapter.document.documentnode.holder;
import com.exasol.adapter.document.documentnode.DocumentNullValue;
/**
* Implementation of {@link DocumentNullValue}.
*/
public final class NullHolderNode implements DocumentNullValue {
@Override
public boolean equals(final java.lang.Object o) {
if (o == this) {
return true;
}
return (o instanceof NullHolderNode);
}
@Override
public int hashCode() {
return 1;
}
}