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

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

The newest version!
package com.exasol.adapter.document.documentnode;

import java.sql.Date;

/**
 * Interface for date values.
 */
public interface DocumentDateValue extends DocumentNode {
    @Override
    public default void accept(final DocumentNodeVisitor visitor) {
        visitor.visit(this);
    }

    /**
     * Get the date value.
     * 
     * @return date value
     */
    public Date getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy