Uses of Class
com.mysema.query.types.expr.EString

Packages that use EString
com.mysema.query.lucene   
com.mysema.query.support Various support classes 
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. 
com.mysema.query.types.expr Operations represent typed operations with operator and arguments 
com.mysema.query.types.path Paths represent typed property paths, variables and list-map-array access 
com.mysema.query.types.query Subquery implementations 
 

Uses of EString in com.mysema.query.lucene
 

Subclasses of EString in com.mysema.query.lucene
 class PhraseElement
          PhraseElement represents the embedded String as a phrase
 class TermElement
          TermElement represents the embedded String as a term
 

Uses of EString in com.mysema.query.support
 

Methods in com.mysema.query.support with parameters of type EString
 StringSubQuery DetachableMixin.unique(EString projection)
           
 StringSubQuery DetachableAdapter.unique(EString projection)
           
 StringSubQuery DetachableQuery.unique(EString projection)
           
 

Uses of EString in com.mysema.query.types
 

Fields in com.mysema.query.types with type parameters of type EString
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toContainsViaLike
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toContainsViaLike
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toContainsViaLikeLower
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toContainsViaLikeLower
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toEndsWithViaLike
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toEndsWithViaLike
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toEndsWithViaLikeLower
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toEndsWithViaLikeLower
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toLowerCase
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toLowerCase
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toStartsWithViaLike
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toStartsWithViaLike
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toStartsWithViaLikeLower
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toStartsWithViaLikeLower
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toUpperCase
           
static org.apache.commons.collections15.Transformer<EString,EString> Converters.toUpperCase
           
 

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

Subclasses of EString in com.mysema.query.types.custom
 class CString
          CString defines custom String expressions
 

Methods in com.mysema.query.types.custom that return EString
static EString CString.create(String template, Expr<?>... args)
           
static EString CString.create(Template template, Expr<?>... args)
           
 

Uses of EString in com.mysema.query.types.expr
 

Subclasses of EString in com.mysema.query.types.expr
 class EStringConst
          EStringConst represents String constants
 class OString
          OString represents a String typed operation
 

Methods in com.mysema.query.types.expr that return EString
 EString EString.append(Expr<String> str)
          Get the concatenation of this and str
 EString EStringConst.append(Expr<String> s)
           
 EString EString.append(String str)
          Get the concatenation of this and str
 EString EStringConst.append(String s)
           
 EString EString.as(Path<String> alias)
           
 EString Coalesce.asString()
           
 EString EString.concat(Expr<String> str)
          Get the concatenation of this and str
 EString EString.concat(String str)
          Get the concatenation of this and str
 EString EStringConst.concat(String s)
           
static EString OString.create(Operator<? super String> op, Expr<?>... args)
           
static EString EStringConst.create(String str)
          Factory method for constants
static EString EStringConst.create(String str, boolean populateCache)
           
static EString EStringEscape.escapeForLike(EString expr)
           
 EString EString.lower()
          Get the lower case form
 EString EStringConst.lower()
           
 EString EString.prepend(Expr<String> str)
          Prepend the given String and return the result
 EString EStringConst.prepend(Expr<String> s)
           
 EString EString.prepend(String str)
          Prepend the given String and return the result
 EString EStringConst.prepend(String s)
           
 EString EString.stringValue()
           
 EString EComparableBase.stringValue()
          Get a cast to String expression
 EString EString.substring(int beginIndex)
          Get the given substring
 EString EStringConst.substring(int beginIndex)
           
 EString EString.substring(int beginIndex, int endIndex)
          Get the given substring
 EString EStringConst.substring(int beginIndex, int endIndex)
           
 EString EString.toLowerCase()
          Get the lower case form
 EString EStringConst.toLowerCase()
           
 EString EString.toUpperCase()
          Get the upper case form
 EString EStringConst.toUpperCase()
           
 EString EString.trim()
          Get a copy of the string, with leading and trailing whitespace omitted.
 EString EStringConst.trim()
           
 EString EString.upper()
          Get the upper case form
 EString EStringConst.upper()
           
 

Methods in com.mysema.query.types.expr that return types with arguments of type EString
 CaseBuilder.Cases<String,EString> CaseBuilder.Initial.then(EString expr)
           
 CaseForEqBuilder.Cases<String,EString> CaseForEqBuilder.then(EString then)
           
 CaseBuilder.Cases<String,EString> CaseBuilder.Initial.then(String str)
           
 CaseForEqBuilder.Cases<String,EString> CaseForEqBuilder.then(String then)
           
 

Methods in com.mysema.query.types.expr with parameters of type EString
static EString EStringEscape.escapeForLike(EString expr)
           
 EBoolean EString.like(EString str)
          Expr: this like str
 CaseBuilder.Cases<String,EString> CaseBuilder.Initial.then(EString expr)
           
 CaseForEqBuilder.Cases<String,EString> CaseForEqBuilder.then(EString then)
           
 

Uses of EString in com.mysema.query.types.path
 

Subclasses of EString in com.mysema.query.types.path
 class PString
          PString represents String typed paths
 

Uses of EString in com.mysema.query.types.query
 

Subclasses of EString in com.mysema.query.types.query
 class StringSubQuery
          Single result subquery
 

Methods in com.mysema.query.types.query with parameters of type EString
 StringSubQuery Detachable.unique(EString projection)
          Create a subquery expression for the given projection
 



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