21 lines
290 B
Java
21 lines
290 B
Java
package org.greenrobot.greendao.database;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface DatabaseStatement {
|
|
void a();
|
|
|
|
void a(int i, double d);
|
|
|
|
void a(int i, long j);
|
|
|
|
void a(int i, String str);
|
|
|
|
Object b();
|
|
|
|
long c();
|
|
|
|
void close();
|
|
|
|
void execute();
|
|
}
|