package com.easyview.ebook.reader.engine.util.provider; import android.provider.BaseColumns; /** * The Interface BookColumns. */ public interface BookColumns extends BaseColumns { /** The Constant FILE_PATH. */ public static final String FILE_PATH = "file_path"; /** The Constant FILE_NAME. */ public static final String FILE_NAME = "file_name"; /** The Constant FILE_TYPE. */ public static final String FILE_TYPE = "file_type"; /** The Constant LAST_LOCATION. */ public static final String LAST_LOCATION = "last_location"; /** The Constant LAST_PAGE_NUM. */ public static final String LAST_PAGE_NUM = "last_page_num"; /** The Constant TOTAL_PAGE_NUM. */ public static final String TOTAL_PAGE_NUM = "total_page_num"; /** The Constant LAST_ACCESS_TIME. */ public static final String LAST_ACCESS_TIME = "last_access_time"; /** The Constant META_TITLE. */ public static final String META_TITLE = "meta_title"; /** The Constant META_AUTHOR. */ public static final String META_AUTHOR = "meta_author"; /** The Constant META_PUBLISHER. */ public static final String META_PUBLISHER = "meta_publisher"; /** The Constant META_ENCODING. */ public static final String META_ENCODING = "meta_encoding"; /** The Constant META_LANGUAGE. */ public static final String META_LANGUAGE = "meta_language"; /** The Constant USER_NAME. */ public static final String USER_NAME = "user_name"; /** The Constant PASSWORD. */ public static final String PASSWORD = "password"; /** The Constant VIEW_WIDTH. */ public static final String VIEW_WIDTH = "view_width"; /** The Constant VIEW_HEIGHT. */ public static final String VIEW_HEIGHT = "view_height"; /** The Constant FONT_LEVEL. */ public static final String FONT_LEVEL = "font_level"; /** The Constant FILE_SIZE. */ public static final String FILE_SIZE = "file_size"; /** The Constant DEFAULT_SORT. */ public static final String DEFAULT_SORT = "last_access_time DESC"; /** The Constant ID_INDEX. */ public static final int ID_INDEX = 0; /** The Constant FILE_PATH_INDEX. */ public static final int FILE_PATH_INDEX = 1; /** The Constant FILE_NAME_INDEX. */ public static final int FILE_NAME_INDEX = 2; /** The Constant FILE_TYPE_INDEX. */ public static final int FILE_TYPE_INDEX = 3; /** The Constant LAST_LOCATION_INDEX. */ public static final int LAST_LOCATION_INDEX = 4; /** The Constant LAST_PAGE_NUM_INDEX. */ public static final int LAST_PAGE_NUM_INDEX = 5; /** The Constant TOTAL_PAGE_NUM_INDEX. */ public static final int TOTAL_PAGE_NUM_INDEX = 6; /** The Constant LAST_ACCESS_TIME_INDEX. */ public static final int LAST_ACCESS_TIME_INDEX = 7; /** The Constant META_TITLE_INDEX. */ public static final int META_TITLE_INDEX = 8; /** The Constant META_AUTHOR_INDEX. */ public static final int META_AUTHOR_INDEX = 9; /** The Constant META_PUBLISHER_INDEX. */ public static final int META_PUBLISHER_INDEX = 10; /** The Constant META_ENCODING_INDEX. */ public static final int META_ENCODING_INDEX = 11; /** The Constant META_LANGUAGE_INDEX. */ public static final int META_LANGUAGE_INDEX = 12; /** The Constant USER_NAME_INDEX. */ public static final int USER_NAME_INDEX = 13; /** The Constant PASSWORD_INDEX. */ public static final int PASSWORD_INDEX = 14; /** The Constant VIEW_WIDTH_INDEX. */ public static final int VIEW_WIDTH_INDEX = 15; /** The Constant VIEW_HEIGHT_INDEX. */ public static final int VIEW_HEIGHT_INDEX = 16; /** The Constant FONT_LEVEL_ID. */ public static final int FONT_LEVEL_ID = 17; /** The Constant FILE_SIZE_ID. */ public static final int FILE_SIZE_ID = 18; }