All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.database.Cursor Maven / Gradle / Ivy

There is a newer version: 0.3.3
Show newest version
package android.database;

public class Cursor implements AutoCloseable {

    /*
     * Not implemented
     */
    @Deprecated
    public void close() {

    }

    /*
     * Not implemented
     */
    @Deprecated
    public boolean moveToFirst() {
        return true;
    }

    /*
     * Not implemented
     */
    @Deprecated
    public boolean moveToNext() {
        return false;
    }

    /*
     * Not implemented
     */
    @Deprecated
    public long getLong(int i) {
        return 0;
    }

    /*
     * Not implemented
     */
    @Deprecated
    public String getString(int index) {
        return "";
    }

    /*
     * Not implemented
     */
    @Deprecated
    public int getInt(int index) {
        return 0;
    }

    /*
     * Not implemented
     */
    @Deprecated
    public double getDouble(int index) {
        return 0;
    }

    /*
     * Not implemented
     */
    @Deprecated
    public byte[] getBlob(int index) {
        return new byte[0];
    }

    /*
     * Not implemented
     */
    @Deprecated
    public boolean isNull(int column) {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy