dev.fuxing.airtable.formula.LogicalFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of airtable-api Show documentation
Show all versions of airtable-api Show documentation
Java Airtable API for https://airtable.com/api
The newest version!
package dev.fuxing.airtable.formula;
/**
* @see Logical operators and functions
*
* Created by: Fuxing
* Date: 2019-04-21
* Time: 02:06
*/
public interface LogicalFunction extends AirtableFunction {
/**
* Returns true if all the arguments are true, returns false otherwise.
*/
LogicalFunction AND = new LogicalFunction() {
@Override
public String apply(AirtableFormula.Object... objects) {
return function("AND", objects);
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy