Package | Description |
---|---|
com.xpert.persistence.query |
Modifier and Type | Method and Description |
---|---|
LikeType |
Restriction.getLikeType() |
static LikeType |
LikeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LikeType[] |
LikeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Restrictions |
Restrictions.add(String property,
RestrictionType restrictionType,
Object value,
LikeType likeType)
Add a restriction
|
QueryBuilder |
QueryBuilder.add(String property,
RestrictionType restrictionType,
Object value,
LikeType likeType)
Add a restriction
|
Restrictions |
Restrictions.like(String property,
Object value,
LikeType likeType)
Add a RestrictionType.LIKE (property 'like' value)
|
static Restriction |
Restriction.like(String property,
Object value,
LikeType likeType)
Creates a Restrition of type LIKE
|
QueryBuilder |
QueryBuilder.like(String property,
Object value,
LikeType likeType)
Add a RestrictionType.LIKE (property 'like' value)
|
static Restriction |
Restriction.like(String property,
Object value,
LikeType likeType,
boolean ilike)
Creates a Restrition of type LIKE
|
QueryBuilder |
QueryBuilder.like(String property,
Object value,
LikeType likeType,
boolean ilike)
Add a RestrictionType.LIKE (property 'like' value)
|
Restrictions |
Restrictions.notLike(String property,
Object value,
LikeType likeType)
Add a RestrictionType.NOT_LIKE (property 'not like' value)
|
static Restriction |
Restriction.notLike(String property,
Object value,
LikeType likeType)
Creates a Restrition of type NOT_LIKE
|
QueryBuilder |
QueryBuilder.notLike(String property,
Object value,
LikeType likeType)
Add a RestrictionType.NOT_LIKE (property 'not like' value)
|
static Restriction |
Restriction.notLike(String property,
Object value,
LikeType likeType,
boolean ilike)
Creates a Restrition of type NOT_LIKE
|
QueryBuilder |
QueryBuilder.notLike(String property,
Object value,
LikeType likeType,
boolean ilike)
Add a RestrictionType.NOT_LIKE (property 'not like' value)
|
void |
Restriction.setLikeType(LikeType likeType) |
Constructor and Description |
---|
Restriction(String property,
RestrictionType restrictionType,
Object value,
LikeType likeType) |
Restriction(String property,
RestrictionType restrictionType,
Object value,
LikeType likeType,
boolean ilike) |
Copyright © 2015. All rights reserved.