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

com.exasol.adapter.document.documentnode.DocumentTimestampValue Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy