![JAR search and dependency download from the Maven repository](/logo.png)
android.database.sqlite.SQLiteQueryBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of findsecbugs-plugin-deps Show documentation
Show all versions of findsecbugs-plugin-deps Show documentation
This module create facades for all the APIs (classes, interfaces and annotations)
that are use in the test code. The objective is to avoid the needed to download
all the framework supported by the static analyzer.
The newest version!
package android.database.sqlite;
import android.database.Cursor;
import android.os.CancellationSignal;
import java.util.Map;
import java.util.Set;
public class SQLiteQueryBuilder
{
public SQLiteQueryBuilder()
{
throw new RuntimeException("Stub!");
}
public void setDistinct(boolean distinct)
{
throw new RuntimeException("Stub!");
}
public String getTables()
{
throw new RuntimeException("Stub!");
}
public void setTables(String inTables)
{
throw new RuntimeException("Stub!");
}
public void appendWhere(CharSequence inWhere)
{
throw new RuntimeException("Stub!");
}
public void appendWhereEscapeString(String inWhere)
{
throw new RuntimeException("Stub!");
}
public void setProjectionMap(Map columnMap)
{
throw new RuntimeException("Stub!");
}
public void setCursorFactory(SQLiteDatabase.CursorFactory factory)
{
throw new RuntimeException("Stub!");
}
public void setStrict(boolean flag)
{
throw new RuntimeException("Stub!");
}
public static String buildQueryString(boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit)
{
throw new RuntimeException("Stub!");
}
public static void appendColumns(StringBuilder s, String[] columns)
{
throw new RuntimeException("Stub!");
}
public Cursor query(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder)
{
throw new RuntimeException("Stub!");
}
public Cursor query(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit)
{
throw new RuntimeException("Stub!");
}
public Cursor query(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit, CancellationSignal cancellationSignal)
{
throw new RuntimeException("Stub!");
}
public String buildQuery(String[] projectionIn, String selection, String groupBy, String having, String sortOrder, String limit)
{
throw new RuntimeException("Stub!");
}
public String buildQuery(String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit)
{
throw new RuntimeException("Stub!");
}
public String buildUnionSubQuery(String typeDiscriminatorColumn, String[] unionColumns, Set columnsPresentInTable, int computedColumnsOffset, String typeDiscriminatorValue, String selection, String groupBy, String having)
{
throw new RuntimeException("Stub!");
}
public String buildUnionSubQuery(String typeDiscriminatorColumn, String[] unionColumns, Set columnsPresentInTable, int computedColumnsOffset, String typeDiscriminatorValue, String selection, String[] selectionArgs, String groupBy, String having)
{
throw new RuntimeException("Stub!");
}
public String buildUnionQuery(String[] subQueries, String sortOrder, String limit)
{
throw new RuntimeException("Stub!");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy