|
ColdBox Platform Version 3.7.0 | ||||
FRAMES |
WEB-INF.cftags.componentcoldbox.system.orm.hibernate.criterion.Restrictions
public class Restrictions
******************************************************************************* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp www.coldbox.org | www.luismajano.com | www.ortussolutions.com ******************************************************************************* Author : Michael McKellip , Luis Majano Description : A proxy to hibernate org.hibernate.criterion.Restrictions object to allow for criteria based querying
Constructor Summary | |
---|---|
init()
|
Method Summary | |
---|---|
any |
$and()
|
any |
$or()
|
any |
between(string property, any minValue, any maxValue)
|
any |
conjunction(array restrictionValues)
|
any |
disjunction(array restrictionValues)
|
any |
eqProperty(string property, string otherProperty)
|
any |
geProperty(string property, string otherProperty)
|
any |
getNativeClass()
|
any |
gtProperty(string property, string otherProperty)
|
any |
idEQ(any propertyValue)
|
any |
ilike(string property, string propertyValue)
|
any |
isEmpty(string property)
|
any |
isEq(string property, any propertyValue)
|
any |
isFalse(string property)
|
any |
isGe(string property, any propertyValue)
|
any |
isGt(string property, any propertyValue)
|
any |
isIn(string property, any propertyValue)
|
any |
isNot(any criterion)
|
any |
isNotEmpty(string property)
|
any |
isNotNull(string property)
|
any |
isNull(string property)
|
any |
isTrue(string property)
|
any |
isle(string property, any propertyValue)
|
any |
islt(string property, any propertyValue)
|
any |
leProperty(string property, string otherProperty)
|
any |
like(string property, string propertyValue)
|
any |
ltProperty(string property, string otherProperty)
|
any |
ne(string property, any propertyValue)
|
any |
neProperty(string property, any otherProperty)
|
any |
onMissingMethod(string missingMethodName, struct missingMethodArguments)
|
any |
sizeEq(string property, any propertyValue)
|
any |
sizeGE(string property, any propertyValue)
|
any |
sizeGT(string property, any propertyValue)
|
any |
sizeLE(string property, any propertyValue)
|
any |
sizeLT(string property, any propertyValue)
|
any |
sizeNE(string property, any propertyValue)
|
any |
sqlRestriction(string sql)
|
Methods inherited from class WEB-INF.cftags.component |
---|
|
Constructor Detail |
---|
public init()
Method Detail |
---|
public any $and()
public any $or()
public any between(string property, any minValue, any maxValue)
property
minValue
maxValue
public any conjunction(array restrictionValues)
restrictionValues
public any disjunction(array restrictionValues)
restrictionValues
public any eqProperty(string property, string otherProperty)
property
otherProperty
public any geProperty(string property, string otherProperty)
property
otherProperty
public any getNativeClass()
public any gtProperty(string property, string otherProperty)
property
otherProperty
public any idEQ(any propertyValue)
propertyValue
public any ilike(string property, string propertyValue)
property
propertyValue
public any isEmpty(string property)
property
public any isEq(string property, any propertyValue)
property
propertyValue
public any isFalse(string property)
property
public any isGe(string property, any propertyValue)
property
propertyValue
public any isGt(string property, any propertyValue)
property
propertyValue
public any isIn(string property, any propertyValue)
property
propertyValue
public any isNot(any criterion)
criterion
public any isNotEmpty(string property)
property
public any isNotNull(string property)
property
public any isNull(string property)
property
public any isTrue(string property)
property
public any isle(string property, any propertyValue)
property
propertyValue
public any islt(string property, any propertyValue)
property
propertyValue
public any leProperty(string property, string otherProperty)
property
otherProperty
public any like(string property, string propertyValue)
property
propertyValue
public any ltProperty(string property, string otherProperty)
property
otherProperty
public any ne(string property, any propertyValue)
property
propertyValue
public any neProperty(string property, any otherProperty)
property
otherProperty
public any onMissingMethod(string missingMethodName, struct missingMethodArguments)
missingMethodName
missingMethodArguments
public any sizeEq(string property, any propertyValue)
property
propertyValue
public any sizeGE(string property, any propertyValue)
property
propertyValue
public any sizeGT(string property, any propertyValue)
property
propertyValue
public any sizeLE(string property, any propertyValue)
property
propertyValue
public any sizeLT(string property, any propertyValue)
property
propertyValue
public any sizeNE(string property, any propertyValue)
property
propertyValue
public any sqlRestriction(string sql)
sql
|
ColdBox Platform Version 3.7.0 | ||||
FRAMES |