Uses of Class
com.mysema.query.types.Template

Packages that use Template
com.mysema.query.types Contains Querydsl grammar types 
com.mysema.query.types.custom Custom types are comparable to operations but contain the serialization templates instead of operator patterns. 
 

Uses of Template in com.mysema.query.types
 

Methods in com.mysema.query.types that return Template
 Template TemplateFactory.create(String template)
           
 Template Templates.getTemplate(Operator<?> op)
           
 

Uses of Template in com.mysema.query.types.custom
 

Methods in com.mysema.query.types.custom that return Template
 Template Custom.getTemplate()
          Get the serialization template for this custom expression
 Template CTime.getTemplate()
           
 Template CString.getTemplate()
           
 Template CSimple.getTemplate()
           
 Template CNumber.getTemplate()
           
 Template CDateTime.getTemplate()
           
 Template CDate.getTemplate()
           
 Template CComparable.getTemplate()
           
 Template CBoolean.getTemplate()
           
 

Methods in com.mysema.query.types.custom with parameters of type Template
static
<T> Expr<T>
CSimple.create(Class<? extends T> type, Template template, Expr<?>... args)
           
static
<T extends Comparable<?>>
EComparable<T>
CTime.create(Class<T> type, Template template, Expr<?>... args)
           
static
<T extends Comparable<?>>
EDateTime<T>
CDateTime.create(Class<T> type, Template template, Expr<?>... args)
           
static
<T extends Comparable<?>>
EDate<T>
CDate.create(Class<T> type, Template template, Expr<?>... args)
           
static
<T extends Comparable<?>>
EComparable<T>
CComparable.create(Class<T> type, Template template, Expr<?>... args)
           
static
<T extends Number & Comparable<?>>
ENumber<T>
CNumber.create(Class<T> type, Template template, Expr<?>... args)
           
static EString CString.create(Template template, Expr<?>... args)
           
static EBoolean CBoolean.create(Template template, Expr<?>... args)
           
 

Constructors in com.mysema.query.types.custom with parameters of type Template
CBoolean(Template template, List<Expr<?>> args)
           
CComparable(Class<T> type, Template template, List<Expr<?>> args)
           
CDate(Class<T> type, Template template, List<Expr<?>> args)
           
CDateTime(Class<T> type, Template template, List<Expr<?>> args)
           
CNumber(Class<T> type, Template template, List<Expr<?>> args)
           
CSimple(Class<? extends T> type, Template template, List<Expr<?>> args)
           
CString(Template template, List<Expr<?>> args)
           
CTime(Class<T> type, Template template, List<Expr<?>> args)
           
 



Copyright © 2007-2010 Mysema Ltd. All Rights Reserved.