public abstract class AbstractBookMetaData extends Object implements BookMetaData
The GNU Lesser General Public License for details.
The copyright to this program is held by its authors.| Modifier and Type | Field and Description |
|---|---|
private BookDriver |
driver |
private IndexStatus |
indexStatus |
private Language |
language |
private URI |
library |
private URI |
location |
KEY_BOOK, KEY_BOOKLIST, KEY_CATEGORY, KEY_DRIVER, KEY_FONT, KEY_LANG, KEY_LANGUAGE, KEY_NAME, KEY_SCOPE, KEY_VERSIFICATION| Constructor and Description |
|---|
AbstractBookMetaData() |
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(BookMetaData obj) |
boolean |
equals(Object obj) |
BookDriver |
getDriver()
Accessor for the driver that runs this Book.
|
String |
getDriverName()
Calculated field: The name of the name, which could be helpful to
distinguish similar Books available through 2 BookDrivers.
|
IndexStatus |
getIndexStatus()
Has anyone generated a search index for this Book?
|
KeyType |
getKeyType()
How this Book organizes it's keys.
|
Language |
getLanguage()
The language of the book.
|
URI |
getLibrary()
Get the base URI for library of this module.
|
URI |
getLocation()
Get the base URI for relative URIs in the document.
|
String |
getOsisID()
Calculated field: Get an OSIS identifier for the OsisText.setOsisIDWork()
and the Work.setOsisWork() methods.
|
String |
getUnlockKey()
Gets the unlock key for the module.
|
boolean |
hasFeature(FeatureType feature)
Return whether the feature is supported by the book.
|
int |
hashCode() |
boolean |
isEnciphered()
Indicate whether this book is enciphered.
|
boolean |
isLocked()
Indicate whether this book is enciphered and without a key.
|
boolean |
isQuestionable()
Indicate whether this book is questionable.
|
boolean |
isSupported()
Indicate whether this book is supported by JSword.
|
void |
putProperty(String key,
String value)
Save to shared storage.
|
void |
reload()
If this BookMetaData is partially loaded, reload it fully.
|
void |
setDriver(BookDriver driver) |
void |
setIndexStatus(IndexStatus newValue)
This method does not alter the index status, however it is for Indexers
that are responsible for indexing and have changed the status themselves.
|
void |
setLanguage(Language language)
Set the language for this book.
|
void |
setLibrary(URI library)
Set the base URI for library of this module.
|
void |
setLocation(URI location)
Set the base URI for relative URIs in the document.
|
org.jdom2.Document |
toOSIS()
Get an OSIS representation of information concerning this Book.
|
String |
toString() |
boolean |
unlock(String unlockKey)
Unlocks a book with the given key.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetAbbreviation, getBookCategory, getBookCharset, getInitials, getName, getProperty, getPropertyKeys, isLeftToRight, putProperty, setPropertyprivate BookDriver driver
private IndexStatus indexStatus
private Language language
private URI library
private URI location
public KeyType getKeyType()
BookMetaDatagetKeyType in interface BookMetaDatapublic BookDriver getDriver()
BookMetaDatagetDriver in interface BookMetaDatapublic String getDriverName()
BookMetaDatagetDriverName in interface BookMetaDatapublic boolean hasFeature(FeatureType feature)
BookMetaDatahasFeature in interface BookMetaDatafeature - the feature in questionpublic String getOsisID()
BookMetaDatagetOsisID in interface BookMetaDatapublic boolean isSupported()
BookMetaDataisSupported in interface BookMetaDatapublic boolean isEnciphered()
BookMetaDataisEnciphered in interface BookMetaDatapublic boolean isLocked()
BookMetaDataisLocked in interface BookMetaDatapublic boolean unlock(String unlockKey)
BookMetaDataunlock in interface BookMetaDataunlockKey - the key to trypublic String getUnlockKey()
BookMetaDatagetUnlockKey in interface BookMetaDatapublic boolean isQuestionable()
BookMetaDataisQuestionable in interface BookMetaDatapublic Language getLanguage()
BookMetaDatagetLanguage in interface BookMetaDatapublic void setLanguage(Language language)
BookMetaDatasetLanguage in interface BookMetaDatalanguage - the book's languagepublic URI getLibrary()
BookMetaDatagetLibrary in interface BookMetaDatapublic void setLibrary(URI library) throws BookException
BookMetaDatasetLibrary in interface BookMetaDatalibrary - the base URI or null if there is noneBookException - indicates missing data filespublic void setLocation(URI location)
BookMetaDatasetLocation in interface BookMetaDatalocation - the base URI or null if there is nonepublic URI getLocation()
BookMetaDatagetLocation in interface BookMetaDatapublic IndexStatus getIndexStatus()
BookMetaDatagetIndexStatus in interface BookMetaDataIndexManagerpublic void setIndexStatus(IndexStatus newValue)
BookMetaDatasetIndexStatus in interface BookMetaDatanewValue - the status for the index of this bookIndexManagerpublic void reload()
throws BookException
BookMetaDatareload in interface BookMetaDataBookException - when a problem is encountered loading the filepublic void putProperty(String key, String value)
BookMetaDataputProperty in interface BookMetaDatakey - the key of the property to setvalue - the value of the propertypublic org.jdom2.Document toOSIS()
BookMetaDatatoOSIS in interface BookMetaDatapublic void setDriver(BookDriver driver)
driver - The driver to set.public int compareTo(BookMetaData obj)
compareTo in interface Comparable<BookMetaData>