|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<KeyType>
org.crosswire.jsword.book.KeyType
public enum KeyType
Types of Key that a Book uses, either verse, list, or tree.
for license details.
The copyright to this program is held by it's authors.
Enum Constant Summary | |
---|---|
LIST
Book organizes its entries in a list, as in a dictionary. |
|
TREE
Book organizes its entries in a tree, as in a general book. |
|
VERSE
Book contains verses and can be understood as book, chapter and verse. |
Method Summary | |
---|---|
static KeyType |
fromString(String name)
Lookup method to convert from a String |
int |
toInteger()
Get an integer representation for this CaseType |
static KeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static KeyType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final KeyType VERSE
public static final KeyType LIST
public static final KeyType TREE
Method Detail |
---|
public static KeyType[] values()
for (KeyType c : KeyType.values()) System.out.println(c);
public static KeyType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int toInteger()
public static KeyType fromString(String name)
|
Copyright ? 2003-2011 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |