All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.exasol.adapter.document.documentpath.PathSegment Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy