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

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

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

import java.math.BigDecimal;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy