jimu-decompiled/sources/org/greenrobot/greendao/query/Join.java
2025-05-13 19:24:51 +02:00

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;
}
}