29 lines
829 B
Java
29 lines
829 B
Java
package org.greenrobot.greendao.query;
|
|
|
|
import org.greenrobot.greendao.AbstractDao;
|
|
import org.greenrobot.greendao.Property;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class Join<SRC, DST> {
|
|
final String a;
|
|
final AbstractDao<DST, ?> b;
|
|
final Property c;
|
|
final Property d;
|
|
final String e;
|
|
final WhereCollector<DST> f;
|
|
|
|
public Join(String str, Property property, AbstractDao<DST, ?> abstractDao, Property property2, String str2) {
|
|
this.a = str;
|
|
this.c = property;
|
|
this.b = abstractDao;
|
|
this.d = property2;
|
|
this.e = str2;
|
|
this.f = new WhereCollector<>(abstractDao, str2);
|
|
}
|
|
|
|
public Join<SRC, DST> a(WhereCondition whereCondition, WhereCondition... whereConditionArr) {
|
|
this.f.a(whereCondition, whereConditionArr);
|
|
return this;
|
|
}
|
|
}
|