All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opensuodku.bible.tw.Bible Maven / Gradle / Ivy

Go to download

Application developer can use this API to get any verse from Traditional Chinese Bible, source from http://a2z.fhl.net/CBOL.html API self contains entire Bible, no need to link remotely or access any database. Version 1.2 provides getBookCount, getChapterCount and getVerseCount.

There is a newer version: 1.2
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.opensuodku.bible.tw;
import com.opensuodku.bible.tw.TitleOption;
/**
 *
 * @author mark
 */
public class Bible extends AbstractBible implements BibleData, Title {

    @Override
    public String[][] getBook(int book) {
        return BOOK[book];
    }

    @Override
    public String[] getChapter(int book, int chapter) {
        return BOOK[book][chapter];
    }

    @Override
    public String getVerse(int book, int chapter, int verse) {
        return BOOK[book][chapter][verse];
    }

    /**
     * Return selected verse with additional book and chapter info option
     * @param book
     * @param chapter
     * @param verse
     * @param opt 
     * @return 
     */
    public String getVerse(int book, int chapter, int verse, int opt) {
        if (opt == 1) {
            return chapter + ":" + verse + " " + BOOK[book][chapter][verse];
        }
        if (opt == 2) {
            return DATA_SHORT_TW[book] + " " + chapter + ":" + verse + " " + BOOK[book][chapter][verse];
        }
        if (opt == 3) {
            return "(" + book + ")" + DATA_SHORT_TW[book] + " " + chapter + ":" + verse + " " + BOOK[book][chapter][verse];
        }

        return getVerse(book, chapter, verse);
        //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

//    @Override
//    public int getCount() {
//        return BOOK.length;
//    }

    @Override
    public String getTitle(int book, TitleOption opt) {
        
        switch (opt){
            case TITLE_OPTION_EN:{
                return DATA_TITLE_EN[book];
                
            }
            case TITLE_OPTION_TW:{
                return DATA_TITLE_TW[book];
                
            }
            case TITLE_OPTION_SHORT_EN:{
                return DATA_SHORT_EN[book];
                
            }
            case TITLE_OPTION_SHORT_TW:{
                return DATA_SHORT_EN[book];
                
            }
            
            
            
            
            default:
                return "DOING";
            
            
        }
        
        //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy