com.exasol.adapter.document.documentpath.PathSegment 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;
import java.io.Serializable;
/**
* Interface for path segments used in a {@link DocumentPathExpression}.
*/
public interface PathSegment extends Serializable {
/**
* Accepts a {@link PathSegmentVisitor}
*
* @param visitor to accept
*/
void accept(PathSegmentVisitor visitor);
}