List of usage examples for com.google.common.base Function subclass-usage
From source file com.cloudera.impala.catalog.ScalarFunction.java
/** * Internal representation of a scalar function. */ public class ScalarFunction extends Function { // The name inside the binary at location_ that contains this particular // function. e.g. org.example.MyUdf.class.
From source file org.apache.impala.catalog.AggregateFunction.java
/** * Internal representation of an aggregate function. * TODO: Create separate AnalyticFunction class */ public class AggregateFunction extends Function { // Set if different from retType_, null otherwise.
From source file org.yakindu.sct.simulation.core.sexec.interpreter.CoreFunction.java
public class CoreFunction extends Function { public static final String EQUALS = "=="; public static final String NOT_EQUALS = "!="; public static final String SMALLER = "<"; public static final String SMALLER_EQUAL = "<=";
From source file org.yakindu.base.expressions.interpreter.CoreFunction.java
public class CoreFunction extends Function { public static final String EQUALS = "=="; public static final String NOT_EQUALS = "!="; public static final String SMALLER = "<"; public static final String SMALLER_EQUAL = "<=";