Android Open Source - Scanner-For-Zotero Item Type






From Project

Back to project page Scanner-For-Zotero.

License

The source code is released under:

GNU General Public License

If you think the Android project Scanner-For-Zotero 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

/** 
 * Copyright 2011 John M. Schanck/* ww  w  .j a v a 2s  . c  o  m*/
 * 
 * ScannerForZotero is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * ScannerForZotero is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ScannerForZotero.  If not, see <http://www.gnu.org/licenses/>.
 */

// XXX: This is temporary, ultimately we should fetch all ItemTypes
// through api.zotero.org/itemTypes?locale=xxx, and store the result in a db

// We also only support "book" right now.

package org.ale.scanner.zotero.data;

public class ItemType {
    public static final String type = "itemType";

    public static final String artwork = "artwork";
    public static final String audioRecording = "audioRecording";
    public static final String bill = "bill";
    public static final String blogPost = "blogPost";
    public static final String book = "book";
    public static final String bookSection = "bookSection";
    public static final String _case = "case";
    public static final String computerProgram = "computerProgram";
    public static final String conferencePaper = "conferencePaper";
    public static final String dictionaryEntry = "dictionaryEntry";
    public static final String document = "document";
    public static final String email = "email";
    public static final String encyclopediaArticle = "encyclopediaArticle";
    public static final String film = "film";
    public static final String forumPost = "forumPost";
    public static final String hearing = "hearing";
    public static final String instantMessage = "instantMessage";
    public static final String interview = "interview";
    public static final String journalArticle = "journalArticle";
    public static final String letter = "letter";
    public static final String magazineArticle = "magazineArticle";
    public static final String manuscript = "manuscript";
    public static final String map = "map";
    public static final String newspaperArticle = "newspaperArticle";
    public static final String note = "note";
    public static final String patent = "patent";
    public static final String podcast = "podcast";
    public static final String presentation = "presentation";
    public static final String radioBroadcast = "radioBroadcast";
    public static final String report = "report";
    public static final String statute = "statute";
    public static final String tvBroadcast = "tvBroadcast";
    public static final String thesis = "thesis";
    public static final String videoRecording = "videoRecording";
    public static final String webpage = "webpage";
}




Java Source Code List

org.ale.scanner.zotero.BibDetailJSONAdapter.java
org.ale.scanner.zotero.BibItemListAdapter.java
org.ale.scanner.zotero.Dialogs.java
org.ale.scanner.zotero.EditItemActivity.java
org.ale.scanner.zotero.LoginActivity.java
org.ale.scanner.zotero.MainActivity.java
org.ale.scanner.zotero.ManageAccountsActivity.java
org.ale.scanner.zotero.PString.java
org.ale.scanner.zotero.PendingListAdapter.java
org.ale.scanner.zotero.SafeViewFlipper.java
org.ale.scanner.zotero.Util.java
org.ale.scanner.zotero.data.Access.java
org.ale.scanner.zotero.data.Account.java
org.ale.scanner.zotero.data.BibItemDBHandler.java
org.ale.scanner.zotero.data.BibItem.java
org.ale.scanner.zotero.data.Collection.java
org.ale.scanner.zotero.data.CreatorType.java
org.ale.scanner.zotero.data.Database.java
org.ale.scanner.zotero.data.Group.java
org.ale.scanner.zotero.data.ItemField.java
org.ale.scanner.zotero.data.ItemType.java
org.ale.scanner.zotero.web.APIHandler.java
org.ale.scanner.zotero.web.APIRequest.java
org.ale.scanner.zotero.web.HttpsClient.java
org.ale.scanner.zotero.web.RequestQueue.java
org.ale.scanner.zotero.web.googlebooks.GoogleBooksAPIClient.java
org.ale.scanner.zotero.web.googlebooks.GoogleBooksHandler.java
org.ale.scanner.zotero.web.worldcat.WorldCatAPIClient.java
org.ale.scanner.zotero.web.worldcat.WorldCatHandler.java
org.ale.scanner.zotero.web.zotero.ZoteroAPIClient.java
org.ale.scanner.zotero.web.zotero.ZoteroHandler.java