Uses of Class
org.eobjects.metamodel.query.FunctionType

Packages that use FunctionType
org.eobjects.metamodel.query API for querying 
org.eobjects.metamodel.query.builder API for query building 
 

Uses of FunctionType in org.eobjects.metamodel.query
 

Methods in org.eobjects.metamodel.query that return FunctionType
static FunctionType FunctionType.get(String functionName)
           
 FunctionType SelectItem.getFunction()
           
static FunctionType FunctionType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FunctionType[] FunctionType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.eobjects.metamodel.query with parameters of type FunctionType
 Query Query.having(FunctionType function, Column column, OperatorType operatorType, Object operand)
           
 SelectItem SelectItem.replaceFunction(FunctionType function)
          Creates a copy of the SelectItem, with a different FunctionType.
 Query Query.select(FunctionType functionType, Column column)
           
 

Constructors in org.eobjects.metamodel.query with parameters of type FunctionType
SelectItem(FunctionType function, Column column)
          Creates a SelectItem that uses a function on a column, for example SUM(price) or MAX(age)
SelectItem(FunctionType function, Column column, FromItem fromItem)
          Creates a SelectItem that uses a function on a column from a particular FromItem, for example SUM(a.price) or MAX(p.age)
SelectItem(FunctionType function, String expression, String alias)
          Creates a SelectItem based on a function and an expression.
 

Uses of FunctionType in org.eobjects.metamodel.query.builder
 

Methods in org.eobjects.metamodel.query.builder with parameters of type FunctionType
 FunctionSelectBuilder<B> SatisfiedSelectBuilder.and(FunctionType function, Column column)
           
 HavingBuilder SatisfiedHavingBuilder.and(FunctionType functionType, Column column)
           
 HavingBuilder GroupedQueryBuilder.having(FunctionType functionType, Column column)
           
 HavingBuilder SatisfiedHavingBuilder.or(FunctionType functionType, Column column)
           
 SatisfiedOrderByBuilder<GroupedQueryBuilder> GroupedQueryBuilder.orderBy(FunctionType function, Column column)
           
 FunctionSelectBuilder<B> SatisfiedQueryBuilder.select(FunctionType functionType, Column column)
           
 FunctionSelectBuilder<?> SatisfiedFromBuilder.select(FunctionType functionType, Column column)
           
 



Copyright © 2007-2013. All Rights Reserved.