Uses of Class
org.jminor.common.model.SearchType

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

Uses of SearchType in org.jminor.common.model
 

Methods in org.jminor.common.model that return SearchType
 SearchType DefaultColumnSearchModel.getSearchType()
          
 SearchType ColumnSearchModel.getSearchType()
           
static SearchType SearchType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SearchType[] SearchType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.jminor.common.model with parameters of type SearchType
static int DefaultColumnSearchModel.getValueCount(SearchType searchType)
           
 void DefaultColumnSearchModel.setSearchType(SearchType searchType)
          
 void ColumnSearchModel.setSearchType(SearchType searchType)
           
 

Uses of SearchType in org.jminor.common.ui
 

Constructors in org.jminor.common.ui with parameters of type SearchType
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn, ColumnSearchPanel.InputFieldProvider inputFieldProvider, SearchType... searchTypes)
          Instantiates a new ColumnSearchPanel.
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn, JComponent upperBoundField, JComponent lowerBoundField, SearchType... searchTypes)
          Instantiates a new ColumnSearchPanel, with a default input field provider.
ColumnSearchPanel(ColumnSearchModel<K> searchModel, boolean includeActivateBtn, boolean includeToggleAdvBtn, SearchType... searchTypes)
          Instantiates a new ColumnSearchPanel, with a default input field provider.
 

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

Methods in org.jminor.framework.db.criteria with parameters of type SearchType
static EntityCriteria EntityCriteriaUtil.criteria(String entityID, String propertyID, SearchType searchType, Object... values)
           
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)
           
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)
           
static EntitySelectCriteria EntityCriteriaUtil.selectCriteria(String entityID, String propertyID, SearchType searchType, int fetchCount, Object... values)
           
static EntitySelectCriteria EntityCriteriaUtil.selectCriteria(String entityID, String propertyID, SearchType searchType, Object... values)
           
static EntitySelectCriteria EntityCriteriaUtil.selectCriteria(String entityID, String propertyID, SearchType searchType, String orderByClause, int fetchCount, Object... values)