Package com.odiago.flumebase.lang

Examples of com.odiago.flumebase.lang.UniversalType


public class max extends AggregateFunc<Comparable> {
  private UniversalType mArgType;

  public max() {
    // Argument may have any input type.
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_COMPARABLE));
  }
View Full Code Here


*/
public class index extends ScalarFunc {
  private UniversalType mArgType;

  public index() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_ANY));
  }
View Full Code Here

*/
public class avg extends AggregateFunc<AvgState> {
  private UniversalType mArgType;

  public avg() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_NUMERIC));
  }
View Full Code Here

*/
public class contains extends ScalarFunc {
  private UniversalType mArgType;

  public contains() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_ANY));
  }
View Full Code Here

*/
public class to_list extends ScalarFunc {
  private UniversalType mArgType;

  public to_list() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_ANY));
  }
View Full Code Here

*/
public class concat extends ScalarFunc {
  private UniversalType mArgType;

  public concat() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_ANY));
  }
View Full Code Here

public class count extends AggregateFunc<Integer> {
  private UniversalType mArgType;

  public count() {
    // Argument may have any input type.
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_ANY));
  }
View Full Code Here

public class min extends AggregateFunc<Comparable> {
  private UniversalType mArgType;

  public min() {
    // Argument may have any input type.
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_COMPARABLE));
  }
View Full Code Here

*/
public class square extends ScalarFunc {
  private UniversalType mArgType;

  public square() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_NUMERIC));
  }
View Full Code Here

*/
public class size extends ScalarFunc {
  private UniversalType mArgType;

  public size() {
    mArgType = new UniversalType("'a");
    mArgType.addConstraint(Type.getNullable(Type.TypeName.TYPECLASS_ANY));
  }
View Full Code Here

TOP

Related Classes of com.odiago.flumebase.lang.UniversalType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.