Android Open Source - Alfred4Android D B Columns






From Project

Back to project page Alfred4Android.

License

The source code is released under:

Apache License

If you think the Android project Alfred4Android 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.toraleap.collimator.dal;
/*from w  w  w.  ja v a2s . c  o m*/
import android.provider.BaseColumns;

public interface DBColumns extends BaseColumns {
    /**
     * The name for file table.
     * <P>Type: TEXT</P>
     */
  public static final String FileTable = "file";
    /**
     * The name for tag table.
     * <P>Type: TEXT</P>
     */
  public static final String TagTable = "tag";
    /**
     * The name for link table.
     * <P>Type: TEXT</P>
     */
  public static final String LinkTable = "link";
  /**
     * The name for this view.
     * <P>Type: TEXT</P>
     */
  public static final String ViewTable = "view_file_tags";
    /**
     * The unique id for a file.
     * <P>Type: TEXT</P>
     */
  public static final String FileId = "_file_id";
    /**
     * The name for a file.
     * <P>Type: TEXT</P>
     */
  public static final String Name = "name";
    /**
     * The full path for a file.
     * <P>Type: TEXT</P>
     */
  public static final String Path = "path";
    /**
     * The size for a file.
     * <P>Type: INTEGER</P>
     */
  public static final String Size = "size";
    /**
     * The last modified timestamp for a file.
     * <P>Type: INTEGER</P>
     */
  public static final String LastModified = "modified";
    /**
     * The id for a tag.
     * <P>Type: TEXT</P>
     */
  public static final String TagId = "_tag_id";
    /**
     * The name for a tag.
     * <P>Type: TEXT</P>
     */
  public static final String TagName = "tagname";
    /**
     * The type for a tag.
     * <P>Type: INTEGER</P>
     */
  public static final String Type = "type";
    /**
     * The unique id for a link.
     * <P>Type: TEXT</P>
     */
  public static final String LinkId = "_link_id";
}




Java Source Code List

android.media.MediaMetadataRetriever.java
com.toraleap.collimator.AppSearchActivity.java
com.toraleap.collimator.GlobalContext.java
com.toraleap.collimator.HelpActivity.java
com.toraleap.collimator.PrefsActivity.java
com.toraleap.collimator.SearchActivity.java
com.toraleap.collimator.ShortcutActivity.java
com.toraleap.collimator.bll.FileScannerService.java
com.toraleap.collimator.bll.TagGenerator.java
com.toraleap.collimator.dal.DBColumns.java
com.toraleap.collimator.dal.DBHelper.java
com.toraleap.collimator.dal.DBOperation.java
com.toraleap.collimator.data.Expression.java
com.toraleap.collimator.data.IndexData.java
com.toraleap.collimator.data.IndexLoader.java
com.toraleap.collimator.data.Index.java
com.toraleap.collimator.data.Match.java
com.toraleap.collimator.data.Matcher.java
com.toraleap.collimator.data.Sorter.java
com.toraleap.collimator.ext.GlobalProvider.java
com.toraleap.collimator.ext.Playlist.java
com.toraleap.collimator.model.BaseTag.java
com.toraleap.collimator.ui.FloatingDialog.java
com.toraleap.collimator.ui.MatchAdapter.java
com.toraleap.collimator.util.DigestUtil.java
com.toraleap.collimator.util.FileInfo.java
com.toraleap.collimator.util.MimeTypeMap.java
com.toraleap.collimator.util.RecursiveFileObserver.java
com.toraleap.collimator.util.ShortcutHelper.java
com.toraleap.collimator.util.SoftCache.java
com.toraleap.collimator.util.ThumbnailUtil.java
com.toraleap.collimator.util.Unicode2Alpha.java