Android Open Source - bamboo-storage Bamboo Storable Type Meta With Extra






From Project

Back to project page bamboo-storage.

License

The source code is released under:

MIT License

If you think the Android project bamboo-storage listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.pushtorefresh.bamboostorage;
/* w  w  w.  jav  a 2  s.  co  m*/
import android.support.annotation.NonNull;

/**
 * Container for type meta and extra info
 * @author Artem Zinnatullin [artem.zinnatullin@gmail.com]
 */
class BambooStorableTypeMetaWithExtra {

    /**
     * Type meta info
     */
    public final BambooStorableTypeMeta typeMeta;

    /**
     * Once time computed value for queries with where by internal id
     */
    public final String whereById;

    BambooStorableTypeMetaWithExtra(@NonNull BambooStorableTypeMeta typeMeta) {
        this.typeMeta = typeMeta;
        whereById = typeMeta.internalIdFieldName() + " = ?";
    }
}




Java Source Code List

com.pushtorefresh.bamboostorage.ABambooSQLiteOpenHelperContentProvider.java
com.pushtorefresh.bamboostorage.ABambooStorableItem.java
com.pushtorefresh.bamboostorage.ABambooStorageListener.java
com.pushtorefresh.bamboostorage.BambooStorableTypeMetaWithExtra.java
com.pushtorefresh.bamboostorage.BambooStorableTypeMeta.java
com.pushtorefresh.bamboostorage.BambooStorageDefaultNotifier.java
com.pushtorefresh.bamboostorage.BambooStorage.java
com.pushtorefresh.bamboostorage.IBambooStorableItem.java
com.pushtorefresh.bamboostorage.IBambooStorageNotifier.java