com.exasol.adapter.document.documentnode.DocumentTimestampValue 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;
import java.sql.Timestamp;
/**
* Interface for timestamp values.
*/
public interface DocumentTimestampValue extends DocumentNode {
@Override
public default void accept(final DocumentNodeVisitor visitor) {
visitor.visit(this);
}
/**
* Get the date value.
*
* @return date value
*/
public Timestamp getValue();
}