Search in sources :

Example 36 with NonNull

use of android.support.annotation.NonNull in project storio by pushtorefresh.

the class PrimitiveFieldsStorIOSQLitePutResolver method mapToContentValues.

/**
     * {@inheritDoc}
     */
@Override
@NonNull
public ContentValues mapToContentValues(@NonNull PrimitiveFields object) {
    ContentValues contentValues = new ContentValues(8);
    contentValues.put("field1", object.field1);
    contentValues.put("field7", object.field7);
    contentValues.put("field6", object.field6);
    contentValues.put("field8", object.field8);
    contentValues.put("field3", object.field3);
    contentValues.put("field2", object.field2);
    contentValues.put("field5", object.field5);
    contentValues.put("field4", object.field4);
    return contentValues;
}
Also used : ContentValues(android.content.ContentValues) NonNull(android.support.annotation.NonNull) Override(java.lang.Override)

Example 37 with NonNull

use of android.support.annotation.NonNull in project storio by pushtorefresh.

the class PrimitiveMethodsConstructorStorIOSQLiteGetResolver method mapFromCursor.

/**
     * {@inheritDoc}
     */
@Override
@NonNull
public PrimitiveMethodsConstructor mapFromCursor(@NonNull Cursor cursor) {
    boolean field1 = cursor.getInt(cursor.getColumnIndex("field1")) == 1;
    short field2 = cursor.getShort(cursor.getColumnIndex("field2"));
    int field3 = cursor.getInt(cursor.getColumnIndex("field3"));
    long field4 = cursor.getLong(cursor.getColumnIndex("field4"));
    float field5 = cursor.getFloat(cursor.getColumnIndex("field5"));
    double field6 = cursor.getDouble(cursor.getColumnIndex("field6"));
    String field7 = cursor.getString(cursor.getColumnIndex("field7"));
    byte[] field8 = cursor.getBlob(cursor.getColumnIndex("field8"));
    PrimitiveMethodsConstructor object = new PrimitiveMethodsConstructor(field1, field2, field3, field4, field5, field6, field7, field8);
    return object;
}
Also used : String(java.lang.String) NonNull(android.support.annotation.NonNull) Override(java.lang.Override)

Example 38 with NonNull

use of android.support.annotation.NonNull in project storio by pushtorefresh.

the class PrimitiveMethodsConstructorStorIOSQLitePutResolver method mapToContentValues.

/**
     * {@inheritDoc}
     */
@Override
@NonNull
public ContentValues mapToContentValues(@NonNull PrimitiveMethodsConstructor object) {
    ContentValues contentValues = new ContentValues(8);
    contentValues.put("field1", object.getField1());
    contentValues.put("field7", object.getField7());
    contentValues.put("field6", object.getField6());
    contentValues.put("field8", object.getField8());
    contentValues.put("field3", object.getField3());
    contentValues.put("field2", object.getField2());
    contentValues.put("field5", object.getField5());
    contentValues.put("field4", object.getField4());
    return contentValues;
}
Also used : ContentValues(android.content.ContentValues) NonNull(android.support.annotation.NonNull) Override(java.lang.Override)

Example 39 with NonNull

use of android.support.annotation.NonNull in project storio by pushtorefresh.

the class PrimitiveMethodsFactoryMethodStorIOSQLiteGetResolver method mapFromCursor.

/**
     * {@inheritDoc}
     */
@Override
@NonNull
public PrimitiveMethodsFactoryMethod mapFromCursor(@NonNull Cursor cursor) {
    boolean field1 = cursor.getInt(cursor.getColumnIndex("field1")) == 1;
    short field2 = cursor.getShort(cursor.getColumnIndex("field2"));
    int field3 = cursor.getInt(cursor.getColumnIndex("field3"));
    long field4 = cursor.getLong(cursor.getColumnIndex("field4"));
    float field5 = cursor.getFloat(cursor.getColumnIndex("field5"));
    double field6 = cursor.getDouble(cursor.getColumnIndex("field6"));
    String field7 = cursor.getString(cursor.getColumnIndex("field7"));
    byte[] field8 = cursor.getBlob(cursor.getColumnIndex("field8"));
    PrimitiveMethodsFactoryMethod object = PrimitiveMethodsFactoryMethod.create(field1, field2, field3, field4, field5, field6, field7, field8);
    return object;
}
Also used : String(java.lang.String) NonNull(android.support.annotation.NonNull) Override(java.lang.Override)

Example 40 with NonNull

use of android.support.annotation.NonNull in project storio by pushtorefresh.

the class PrimitiveMethodsFactoryMethodStorIOSQLitePutResolver method mapToContentValues.

/**
     * {@inheritDoc}
     */
@Override
@NonNull
public ContentValues mapToContentValues(@NonNull PrimitiveMethodsFactoryMethod object) {
    ContentValues contentValues = new ContentValues(8);
    contentValues.put("field1", object.getField1());
    contentValues.put("field7", object.getField7());
    contentValues.put("field6", object.getField6());
    contentValues.put("field8", object.getField8());
    contentValues.put("field3", object.getField3());
    contentValues.put("field2", object.getField2());
    contentValues.put("field5", object.getField5());
    contentValues.put("field4", object.getField4());
    return contentValues;
}
Also used : ContentValues(android.content.ContentValues) NonNull(android.support.annotation.NonNull) Override(java.lang.Override)

Aggregations

NonNull (android.support.annotation.NonNull)747 View (android.view.View)94 TextView (android.widget.TextView)90 ArrayList (java.util.ArrayList)83 Intent (android.content.Intent)53 ContentValues (android.content.ContentValues)46 Bundle (android.os.Bundle)46 Test (org.junit.Test)45 AlertDialog (android.support.v7.app.AlertDialog)41 Cursor (android.database.Cursor)38 List (java.util.List)34 IOException (java.io.IOException)32 MaterialDialog (com.afollestad.materialdialogs.MaterialDialog)31 LayoutInflater (android.view.LayoutInflater)29 RecyclerView (android.support.v7.widget.RecyclerView)28 ImageView (android.widget.ImageView)28 File (java.io.File)28 DialogAction (com.afollestad.materialdialogs.DialogAction)25 HashMap (java.util.HashMap)25 Bitmap (android.graphics.Bitmap)24