Methods Summary |
---|
public Order | asc()
return Order.asc(getPropertyName());
|
public AggregateProjection | avg()
return Projections.avg(getPropertyName());
|
public Criterion | between(java.lang.Object min, java.lang.Object max)
return Restrictions.between(getPropertyName(), min, max);
|
public CountProjection | count()
return Projections.count(getPropertyName());
|
public Order | desc()
return Order.desc(getPropertyName());
|
public Criterion | eq(DetachedCriteria subselect)
return Subqueries.propertyEq( getPropertyName(), subselect );
|
public SimpleExpression | eq(java.lang.Object value)
return Restrictions.eq(getPropertyName(), value);
|
public Criterion | eqAll(DetachedCriteria subselect)
return Subqueries.propertyEqAll( getPropertyName(), subselect );
|
public PropertyExpression | eqProperty(org.hibernate.criterion.Property other)
return Restrictions.eqProperty( getPropertyName(), other.getPropertyName() );
|
public PropertyExpression | eqProperty(java.lang.String other)
return Restrictions.eqProperty( getPropertyName(), other );
|
public static org.hibernate.criterion.Property | forName(java.lang.String propertyName)
return new Property(propertyName);
|
public SimpleExpression | ge(java.lang.Object value)
return Restrictions.ge(getPropertyName(), value);
|
public Criterion | ge(DetachedCriteria subselect)
return Subqueries.propertyGe( getPropertyName(), subselect );
|
public Criterion | geAll(DetachedCriteria subselect)
return Subqueries.propertyGeAll( getPropertyName(), subselect );
|
public PropertyExpression | geProperty(org.hibernate.criterion.Property other)
return Restrictions.geProperty( getPropertyName(), other.getPropertyName() );
|
public PropertyExpression | geProperty(java.lang.String other)
return Restrictions.geProperty( getPropertyName(), other );
|
public Criterion | geSome(DetachedCriteria subselect)
return Subqueries.propertyGeSome( getPropertyName(), subselect );
|
public org.hibernate.criterion.Property | getProperty(java.lang.String propertyName)Get a component attribute of this property
return forName( getPropertyName() + '." + propertyName );
|
public PropertyProjection | group()
return Projections.groupProperty(getPropertyName());
|
public Criterion | gt(DetachedCriteria subselect)
return Subqueries.propertyGt( getPropertyName(), subselect );
|
public SimpleExpression | gt(java.lang.Object value)
return Restrictions.gt(getPropertyName(), value);
|
public Criterion | gtAll(DetachedCriteria subselect)
return Subqueries.propertyGtAll( getPropertyName(), subselect );
|
public PropertyExpression | gtProperty(org.hibernate.criterion.Property other)
return Restrictions.gtProperty( getPropertyName(), other.getPropertyName() );
|
public PropertyExpression | gtProperty(java.lang.String other)
return Restrictions.gtProperty( getPropertyName(), other );
|
public Criterion | gtSome(DetachedCriteria subselect)
return Subqueries.propertyGtSome( getPropertyName(), subselect );
|
public Criterion | in(java.util.Collection values)
return Restrictions.in(getPropertyName(), values);
|
public Criterion | in(java.lang.Object[] values)
return Restrictions.in(getPropertyName(), values);
|
public Criterion | in(DetachedCriteria subselect)
return Subqueries.propertyIn( getPropertyName(), subselect );
|
public Criterion | isEmpty()
return Restrictions.isEmpty(getPropertyName());
|
public Criterion | isNotEmpty()
return Restrictions.isNotEmpty(getPropertyName());
|
public Criterion | isNotNull()
return Restrictions.isNotNull(getPropertyName());
|
public Criterion | isNull()
return Restrictions.isNull(getPropertyName());
|
public SimpleExpression | le(java.lang.Object value)
return Restrictions.le(getPropertyName(), value);
|
public Criterion | le(DetachedCriteria subselect)
return Subqueries.propertyLe( getPropertyName(), subselect );
|
public Criterion | leAll(DetachedCriteria subselect)
return Subqueries.propertyLeAll( getPropertyName(), subselect );
|
public PropertyExpression | leProperty(org.hibernate.criterion.Property other)
return Restrictions.leProperty( getPropertyName(), other.getPropertyName() );
|
public PropertyExpression | leProperty(java.lang.String other)
return Restrictions.leProperty( getPropertyName(), other );
|
public Criterion | leSome(DetachedCriteria subselect)
return Subqueries.propertyLeSome( getPropertyName(), subselect );
|
public SimpleExpression | like(java.lang.Object value)
return Restrictions.like(getPropertyName(), value);
|
public SimpleExpression | like(java.lang.String value, MatchMode matchMode)
return Restrictions.like(getPropertyName(), value, matchMode);
|
public SimpleExpression | lt(java.lang.Object value)
return Restrictions.lt(getPropertyName(), value);
|
public Criterion | lt(DetachedCriteria subselect)
return Subqueries.propertyLt( getPropertyName(), subselect );
|
public Criterion | ltAll(DetachedCriteria subselect)
return Subqueries.propertyLtAll( getPropertyName(), subselect );
|
public PropertyExpression | ltProperty(org.hibernate.criterion.Property other)
return Restrictions.ltProperty( getPropertyName(), other.getPropertyName() );
|
public PropertyExpression | ltProperty(java.lang.String other)
return Restrictions.ltProperty( getPropertyName(), other );
|
public Criterion | ltSome(DetachedCriteria subselect)
return Subqueries.propertyLtSome( getPropertyName(), subselect );
|
public AggregateProjection | max()
return Projections.max(getPropertyName());
|
public AggregateProjection | min()
return Projections.min(getPropertyName());
|
public Criterion | ne(DetachedCriteria subselect)
return Subqueries.propertyNe( getPropertyName(), subselect );
|
public SimpleExpression | ne(java.lang.Object value)
return Restrictions.ne(getPropertyName(), value);
|
public PropertyExpression | neProperty(org.hibernate.criterion.Property other)
return Restrictions.neProperty( getPropertyName(), other.getPropertyName() );
|
public PropertyExpression | neProperty(java.lang.String other)
return Restrictions.neProperty( getPropertyName(), other );
|
public Criterion | notIn(DetachedCriteria subselect)
return Subqueries.propertyNotIn( getPropertyName(), subselect );
|