protected static enum BibleComboBoxModel.Level extends Enum<BibleComboBoxModel.Level>
Enum Constant and Description |
---|
BOOK
For when the we are a book level combo
|
CHAPTER
For when the we are a chapter level combo
|
VERSE
For when the we are a verse level combo
|
Modifier and Type | Method and Description |
---|---|
static BibleComboBoxModel.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BibleComboBoxModel.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BibleComboBoxModel.Level BOOK
public static final BibleComboBoxModel.Level CHAPTER
public static final BibleComboBoxModel.Level VERSE
public static BibleComboBoxModel.Level[] values()
for (BibleComboBoxModel.Level c : BibleComboBoxModel.Level.values()) System.out.println(c);
public static BibleComboBoxModel.Level valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null