Uses of Interface
org.jminor.common.db.criteria.Criteria

Packages that use Criteria
org.jminor.common.db.criteria   
org.jminor.framework.client.model   
org.jminor.framework.client.ui   
org.jminor.framework.db.criteria   
 

Uses of Criteria in org.jminor.common.db.criteria
 

Classes in org.jminor.common.db.criteria that implement Criteria
 class CriteriaSet<T>
          A class encapsulating a set of Criteria objects, that should be either AND'ed or OR'ed together in a query context
 class SimpleCriteria<T>
          Encapsulates a simple free-form query criteria.
 

Methods in org.jminor.common.db.criteria that return Criteria
 Criteria<T> CriteriaProvider.getCriteria()
           
 

Methods in org.jminor.common.db.criteria with parameters of type Criteria
 void CriteriaSet.add(Criteria<T> criteria)
          Adds a new Criteria object to this set
 

Constructors in org.jminor.common.db.criteria with parameters of type Criteria
CriteriaSet(Conjunction conjunction, Criteria<T>... criteria)
          Initializes a new CriteriaSet instance
 

Uses of Criteria in org.jminor.framework.client.model
 

Methods in org.jminor.framework.client.model that return Criteria
 Criteria<Property.ColumnProperty> EntityTableSearchModel.getAdditionalSearchCriteria()
           
 Criteria<Property.ColumnProperty> DefaultEntityTableSearchModel.getAdditionalSearchCriteria()
          
 Criteria<Property.ColumnProperty> DefaultPropertySearchModel.getCriteria()
          
 Criteria<Property.ColumnProperty> DefaultForeignKeySearchModel.getCriteria()
           
protected  Criteria<Property.ColumnProperty> DefaultEntityTableModel.getQueryCriteria()
           
 Criteria<Property.ColumnProperty> EntityTableSearchModel.getSearchCriteria()
           
 Criteria<Property.ColumnProperty> DefaultEntityTableSearchModel.getSearchCriteria()
          
 

Methods in org.jminor.framework.client.model with parameters of type Criteria
 EntityLookupModel EntityEditModel.createEntityLookupModel(String entityID, List<Property.ColumnProperty> lookupProperties, Criteria additionalSearchCriteria)
          Creates a EntityLookupModel for the given entityID
 EntityLookupModel DefaultEntityEditModel.createEntityLookupModel(String entityID, List<Property.ColumnProperty> lookupProperties, Criteria additionalSearchCriteria)
          Creates a EntityLookupModel for the given entityID
protected  List<Entity> DefaultEntityTableModel.performQuery(Criteria<Property.ColumnProperty> criteria)
          Queries for the data used to populate this EntityTableModel when it is refreshed
 EntityLookupModel EntityLookupModel.setAdditionalLookupCriteria(Criteria additionalLookupCriteria)
          Sets the additional lookup criteria to use when performing the lookup.
 EntityLookupModel DefaultEntityLookupModel.setAdditionalLookupCriteria(Criteria additionalLookupCriteria)
          Sets the additional lookup criteria to use when performing the lookup.
 EntityTableSearchModel EntityTableSearchModel.setAdditionalSearchCriteria(Criteria<Property.ColumnProperty> criteria)
          Sets the additional search criteria, one not based on any individual property criteria
 EntityTableSearchModel DefaultEntityTableSearchModel.setAdditionalSearchCriteria(Criteria<Property.ColumnProperty> criteria)
          Sets the additional search criteria, one not based on any individual property criteria
 

Uses of Criteria in org.jminor.framework.client.ui
 

Methods in org.jminor.framework.client.ui with parameters of type Criteria
static EntityLookupField EntityUiUtil.createEntityLookupField(Property.ForeignKeyProperty foreignKeyProperty, EntityEditModel editModel, Criteria additionalSearchCriteria, String... searchPropertyIDs)
           
 

Uses of Criteria in org.jminor.framework.db.criteria
 

Methods in org.jminor.framework.db.criteria that return Criteria
static Criteria<Property.ColumnProperty> EntityCriteriaUtil.foreignKeyCriteria(Property.ForeignKeyProperty foreignKeyProperty, SearchType searchType, Object... values)
           
static Criteria<Property.ColumnProperty> EntityCriteriaUtil.foreignKeyCriteria(String entityID, String fkPropertyID, SearchType searchType, Object... values)
           
 Criteria<Property.ColumnProperty> EntityCriteria.getCriteria()
           
static Criteria<Property.ColumnProperty> EntityCriteriaUtil.propertyCriteria(Property.ColumnProperty property, boolean caseSensitive, SearchType searchType, Object... values)
           
static Criteria<Property.ColumnProperty> EntityCriteriaUtil.propertyCriteria(Property.ColumnProperty property, SearchType searchType, Object... values)
           
static Criteria<Property.ColumnProperty> EntityCriteriaUtil.propertyCriteria(String entityID, String propertyID, boolean caseSensitive, SearchType searchType, Object... values)
           
static Criteria<Property.ColumnProperty> EntityCriteriaUtil.propertyCriteria(String entityID, String propertyID, SearchType searchType, Object... values)
           
 

Methods in org.jminor.framework.db.criteria with parameters of type Criteria
static EntityCriteria EntityCriteriaUtil.criteria(String entityID, Criteria<Property.ColumnProperty> criteria)
           
static EntitySelectCriteria EntityCriteriaUtil.selectCriteria(String entityID, Criteria<Property.ColumnProperty> propertyCriteria)
           
static EntitySelectCriteria EntityCriteriaUtil.selectCriteria(String entityID, Criteria<Property.ColumnProperty> criteria, String orderByClause)
           
static EntitySelectCriteria EntityCriteriaUtil.selectCriteria(String entityID, Criteria<Property.ColumnProperty> propertyCriteria, String orderByClause, int fetchCount)