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

dev.fuxing.airtable.formula.NumericFunction Maven / Gradle / Ivy

The newest version!
package dev.fuxing.airtable.formula;

/**
 * @see Numeric operators and functions
 * 

* Created by: Fuxing * Date: 2019-04-21 * Time: 02:06 */ public interface NumericFunction extends AirtableFunction { /** * Returns the absolute value. */ NumericFunction ABS = new NumericFunction() { @Override public String apply(AirtableFormula.Object... objects) { return function("ABS", objects); } }; /** * Returns the average of the numbers. */ NumericFunction AVERAGE = new NumericFunction() { @Override public String apply(AirtableFormula.Object... objects) { return function("AVERAGE", objects); } }; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy