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

com.heliorm.sql.DecimalColumn Maven / Gradle / Ivy

package com.heliorm.sql;

/** Column representing a decimal number */
public interface DecimalColumn extends Column {

    /** Get the precision of the number.
     *
     * @return The precision
     */
    int getPrecision();

    /** Get the scale of the number.
     *
     * @return The scale
     */
    int getScale();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy