com.exasol.adapter.document.documentpath.ArrayAllPathSegment 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.documentpath;
/**
* This path segment describes that all children of an array are part of the path.
*/
public class ArrayAllPathSegment implements PathSegment {
private static final long serialVersionUID = 1742087357300081487L;
@Override
public void accept(final PathSegmentVisitor visitor) {
visitor.visit(this);
}
@Override
public boolean equals(final Object other) {
return other instanceof ArrayAllPathSegment;
}
@Override
public int hashCode() {
return 0;
}
}