Package | Description |
---|---|
com.querydsl.core.types.dsl |
DSL expression types
|
com.querydsl.jpa |
JPA support
|
com.querydsl.lucene3 |
Lucene 3 support
|
com.querydsl.spatial |
Spatial types using Geolatte
|
com.querydsl.spatial.jts |
Spatial types using JTS
|
com.querydsl.sql |
SQL/JDBC support
|
Modifier and Type | Class and Description |
---|---|
class |
StringOperation
StringOperation represents a String typed operation |
class |
StringPath
StringPath represents String typed paths |
class |
StringTemplate
StringTemplate defines custom String expressions |
Modifier and Type | Method and Description |
---|---|
StringExpression |
StringExpression.append(Expression<String> str)
Create a
concat(this, str) expression |
StringExpression |
StringExpression.append(String str)
Create a
concat(this, str) expression |
StringExpression |
StringExpression.as(Path<String> alias) |
StringExpression |
StringExpression.as(String alias) |
StringExpression |
Coalesce.asString() |
static StringExpression |
Expressions.asString(Expression<String> expr)
Create a new StringExpression
|
static StringExpression |
Expressions.asString(String value)
Create a new StringExpression
|
StringExpression |
StringExpression.concat(Expression<String> str)
Create a
concat(this, str) expression |
StringExpression |
StringExpression.concat(String str)
Create a
concat(this, str) expression |
StringExpression |
StringExpression.lower()
Create a
this.toLowerCase() expression |
static StringExpression |
StringExpressions.lpad(Expression<String> in,
Expression<Integer> length)
Create a
lpad(in, length) expression |
static StringExpression |
StringExpressions.lpad(Expression<String> in,
int length)
Create a
lpad(in, length) expression |
static StringExpression |
StringExpressions.lpad(Expression<String> in,
int length,
char c)
Create a
lpad(in, length, c) expression |
static StringExpression |
StringExpressions.lpad(Expression<String> in,
NumberExpression<Integer> length,
char c)
Create a
lpad(in, length, c) expression |
static StringExpression |
StringExpressions.ltrim(Expression<String> str)
Create a
ltrim(str) expression |
StringExpression |
StringExpression.max()
Create a
max(this) expression |
StringExpression |
StringExpression.min()
Create a
min(this) expression |
StringExpression |
StringExpression.prepend(Expression<String> str)
Create a
concat(str, this) expression |
StringExpression |
StringExpression.prepend(String str)
Create a
concat(str, this) expression |
static StringExpression |
StringExpressions.rpad(Expression<String> in,
Expression<Integer> length)
Create a
rpad(in, length) expression |
static StringExpression |
StringExpressions.rpad(Expression<String> in,
int length)
Create a
rpad(in, length) expression |
static StringExpression |
StringExpressions.rpad(Expression<String> in,
int length,
char c)
Create a
rpad(in, length, c) expression |
static StringExpression |
StringExpressions.rpad(Expression<String> in,
NumberExpression<Integer> length,
char c)
Create a
rpad(in, length, c) expression |
static StringExpression |
StringExpressions.rtrim(Expression<String> str)
Create a
rtrim(str) expression |
StringExpression |
StringExpression.stringValue() |
StringExpression |
NumberExpression.stringValue()
Create a cast to String expression
|
StringExpression |
LiteralExpression.stringValue()
Create a cast to String expression
|
StringExpression |
StringExpression.substring(Expression<Integer> beginIndex)
Create a
this.substring(beginIndex) expression |
StringExpression |
StringExpression.substring(Expression<Integer> beginIndex,
Expression<Integer> endIndex)
Create a
this.substring(beginIndex, endIndex) expression |
StringExpression |
StringExpression.substring(Expression<Integer> beginIndex,
int endIndex)
Create a
this.substring(beginIndex, endIndex) expression |
StringExpression |
StringExpression.substring(int beginIndex)
Create a
this.substring(beginIndex) expression |
StringExpression |
StringExpression.substring(int beginIndex,
Expression<Integer> endIndex)
Create a
this.substring(beginIndex, endIndex) expression |
StringExpression |
StringExpression.substring(int beginIndex,
int endIndex)
Create a
this.substring(beginIndex, endIndex) expression |
StringExpression |
StringExpression.toLowerCase()
Create a
this.toLowerCase() expression |
StringExpression |
StringExpression.toUpperCase()
Create a
this.toUpperCase() expression |
StringExpression |
StringExpression.trim()
Create a
this.trim() expression |
StringExpression |
StringExpression.upper()
Create a
this.toUpperCase() expression |
Modifier and Type | Method and Description |
---|---|
CaseForEqBuilder.Cases<String,StringExpression> |
CaseForEqBuilder.then(String then) |
CaseBuilder.Cases<String,StringExpression> |
CaseBuilder.Initial.then(String str) |
CaseForEqBuilder.Cases<String,StringExpression> |
CaseForEqBuilder.then(StringExpression then) |
CaseBuilder.Cases<String,StringExpression> |
CaseBuilder.Initial.then(StringExpression expr) |
Modifier and Type | Method and Description |
---|---|
CaseForEqBuilder.Cases<String,StringExpression> |
CaseForEqBuilder.then(StringExpression then) |
CaseBuilder.Cases<String,StringExpression> |
CaseBuilder.Initial.then(StringExpression expr) |
Modifier and Type | Method and Description |
---|---|
static StringExpression |
JPAExpressions.type(EntityPath<?> path)
Create a type(path) expression
|
Modifier and Type | Class and Description |
---|---|
class |
PhraseElement
PhraseElement represents the embedded String as a phrase |
class |
TermElement
TermElement represents the embedded String as a term |
Modifier and Type | Method and Description |
---|---|
static StringExpression |
GeometryExpressions.asEWKT(GeometryExpression<?> expr)
Return a specified ST_Geometry value from Extended Well-Known Text representation (EWKT).
|
StringExpression |
GeometryExpression.asText()
Exports this geometric object to a specific Well-known Text Representation of Geometry.
|
StringExpression |
GeometryExpression.geometryType()
Returns the name of the instantiable subtype of Geometry of which this
geometric object is an instantiable member.
|
Modifier and Type | Method and Description |
---|---|
static StringExpression |
JTSGeometryExpressions.asEWKT(JTSGeometryExpression<?> expr)
Return a specified ST_Geometry value from Extended Well-Known Text representation (EWKT).
|
StringExpression |
JTSGeometryExpression.asText()
Exports this geometric object to a specific Well-known Text Representation of Geometry.
|
StringExpression |
JTSGeometryExpression.geometryType()
Returns the name of the instantiable subtype of Geometry of which this
geometric object is an instantiable member.
|
Modifier and Type | Method and Description |
---|---|
static StringExpression |
SQLExpressions.groupConcat(Expression<String> expr)
Get a group_concat(expr) expression
|
static StringExpression |
SQLExpressions.groupConcat(Expression<String> expr,
String separator)
Get a group_concat(expr, separator) expression
|
static StringExpression |
SQLExpressions.left(Expression<String> lhs,
Expression<Integer> rhs)
Get the rhs leftmost characters of lhs
|
static StringExpression |
SQLExpressions.left(Expression<String> lhs,
int rhs)
Get the rhs leftmost characters of lhs
|
static StringExpression |
SQLExpressions.right(Expression<String> lhs,
Expression<Integer> rhs)
Get the rhs leftmost characters of lhs
|
static StringExpression |
SQLExpressions.right(Expression<String> lhs,
int rhs)
Get the rhs rightmost characters of lhs
|
Copyright © 2007–2016 Querydsl. All rights reserved.