package org.greenrobot.greendao.query; import org.greenrobot.greendao.AbstractDao; import org.greenrobot.greendao.Property; /* loaded from: classes2.dex */ public class Join { final String a; final AbstractDao b; final Property c; final Property d; final String e; final WhereCollector f; public Join(String str, Property property, AbstractDao 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 a(WhereCondition whereCondition, WhereCondition... whereConditionArr) { this.f.a(whereCondition, whereConditionArr); return this; } }