de.greenrobot.dao.query.Join Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greendao-encryption Show documentation
Show all versions of greendao-encryption Show documentation
greenDAO is a light and fast ORM for Android
/*
* Copyright (C) 2011-2015 Markus Junginger, greenrobot (http://greenrobot.de)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.greenrobot.dao.query;
import de.greenrobot.dao.AbstractDao;
import de.greenrobot.dao.Property;
/**
* A Join lets you relate to other entity types for queries, and allows using WHERE statements on the joined entity
* type.
*/
public class Join {
final String sourceTablePrefix;
final AbstractDao daoDestination;
final Property joinPropertySource;
final Property joinPropertyDestination;
final String tablePrefix;
final WhereCollector whereCollector;
public Join(String sourceTablePrefix, Property sourceJoinProperty,
AbstractDao daoDestination, Property destinationJoinProperty,
String joinTablePrefix) {
this.sourceTablePrefix = sourceTablePrefix;
this.joinPropertySource = sourceJoinProperty;
this.daoDestination = daoDestination;
this.joinPropertyDestination = destinationJoinProperty;
tablePrefix = joinTablePrefix;
whereCollector = new WhereCollector(daoDestination, joinTablePrefix);
}
/**
* Adds the given conditions to the where clause using an logical AND. To create new conditions, use the properties
* given in the generated dao classes.
*/
public Join where(WhereCondition cond, WhereCondition... condMore) {
whereCollector.add(cond, condMore);
return this;
}
/**
* Adds the given conditions to the where clause using an logical OR. To create new conditions, use the properties
* given in the generated dao classes.
*/
public Join whereOr(WhereCondition cond1, WhereCondition cond2, WhereCondition... condMore) {
whereCollector.add(or(cond1, cond2, condMore));
return this;
}
/**
* Creates a WhereCondition by combining the given conditions using OR. The returned WhereCondition must be used
* inside {@link #where(WhereCondition, WhereCondition...)} or
* {@link #whereOr(WhereCondition, WhereCondition, WhereCondition...)}.
*/
public WhereCondition or(WhereCondition cond1, WhereCondition cond2, WhereCondition... condMore) {
return whereCollector.combineWhereConditions(" OR ", cond1, cond2, condMore);
}
/**
* Creates a WhereCondition by combining the given conditions using AND. The returned WhereCondition must be used
* inside {@link #where(WhereCondition, WhereCondition...)} or
* {@link #whereOr(WhereCondition, WhereCondition, WhereCondition...)}.
*/
public WhereCondition and(WhereCondition cond1, WhereCondition cond2, WhereCondition... condMore) {
return whereCollector.combineWhereConditions(" AND ", cond1, cond2, condMore);
}
/**
* Usually you don't need this value; just in case you are mixing custom
* {@link de.greenrobot.dao.query.WhereCondition.StringCondition} into the query, this value allows to reference
* the joined (target) table.
*/
public String getTablePrefix() {
return tablePrefix;
}
}