Uses of Interface
com.elasticpath.persistence.support.PropertyCriterion

Packages that use PropertyCriterion
com.elasticpath.persistence   
com.elasticpath.persistence.impl   
com.elasticpath.persistence.support   
com.elasticpath.persistence.support.impl   
 

Uses of PropertyCriterion in com.elasticpath.persistence
 

Methods in com.elasticpath.persistence with parameters of type PropertyCriterion
 java.util.List PersistenceEngine.find(java.lang.Class objClass, PropertyCriterion propertyCriterion)
          Retrieve a list of persistent instances of the specified class with the specified property criterion.
 

Uses of PropertyCriterion in com.elasticpath.persistence.impl
 

Methods in com.elasticpath.persistence.impl with parameters of type PropertyCriterion
 java.util.List HibernatePersistenceEngineImpl.find(java.lang.Class objClass, PropertyCriterion propertyCriterion)
          Retrieve a list of persistent instances of the specified class with the specified property criterion.
 

Uses of PropertyCriterion in com.elasticpath.persistence.support
 

Methods in com.elasticpath.persistence.support that return PropertyCriterion
 PropertyCriterion RelationCriterion.getPropertyCriterion1()
          Gets the first PropertyCriterion.
 PropertyCriterion RelationCriterion.getPropertyCriterion2()
          Gets the second PropertyCriterion.
 PropertyCriterion PropertyCriterion.setPropertyName(java.lang.String propertyName)
          Sets the name of the property to be checked.
 PropertyCriterion PropertyCriterion.setRestrictionValues(java.lang.Object[] restrictionValues)
          Sets the restriction values, i.e., the value that the property should equal to.
 

Methods in com.elasticpath.persistence.support with parameters of type PropertyCriterion
 void RelationCriterion.setPropertyCriterion1(PropertyCriterion propertyCriterion1)
          Sets the first PropertyCriterion.
 void RelationCriterion.setPropertyCriterion2(PropertyCriterion propertyCriterion2)
          Sets the second PropertyCriterion.
 

Uses of PropertyCriterion in com.elasticpath.persistence.support.impl
 

Classes in com.elasticpath.persistence.support.impl that implement PropertyCriterion
 class AbstractPropertyCriterionImpl
          PropertyCriteriaImpl represents the criteria around a domain object property.
 class HibernatePropertyCriterionEqualImpl
          HibernatePropertyCriterionLikeImpl is the implementation of PropertyCriterion for hibernate with condition "equal".
 class HibernatePropertyCriterionLikeImpl
          HibernatePropertyCriterionLikeImpl is the implementation of PropertyCriterion for hibernate with condition "like".
 

Methods in com.elasticpath.persistence.support.impl that return PropertyCriterion
 PropertyCriterion AbstractRelationCriterionImpl.getPropertyCriterion1()
          Gets the first PropertyCriterion.
 PropertyCriterion AbstractRelationCriterionImpl.getPropertyCriterion2()
          Gets the second PropertyCriterion.
 PropertyCriterion AbstractPropertyCriterionImpl.setPropertyName(java.lang.String propertyName)
          Sets the name of the property to be checked.
 PropertyCriterion AbstractPropertyCriterionImpl.setRestrictionValues(java.lang.Object[] restrictionValues)
          Sets the restriction values, i.e., the value that the property should equal to.
 

Methods in com.elasticpath.persistence.support.impl with parameters of type PropertyCriterion
 void AbstractRelationCriterionImpl.setPropertyCriterion1(PropertyCriterion propertyCriterion1)
          Sets the first PropertyCriterion.
 void AbstractRelationCriterionImpl.setPropertyCriterion2(PropertyCriterion propertyCriterion2)
          Sets the second PropertyCriterion.