Enum Class InterlinearMode
- All Implemented Interfaces:
Serializable
,Comparable<InterlinearMode>
,Constable
Indicates the output required by the user, interleaving, column view or interlinear. Interleaving and
column views also support difference checking
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionColumn view, where each verse is lined up with the othersColumn view with compare optionsinterleaving one or more versions with each otherInterleaving but also having the differences in each text shownTradition interlinear, only works for tagged textsno interlinear desired -
Method Summary
Modifier and TypeMethodDescriptionstatic InterlinearMode
Returns the enum constant of this class with the specified name.static InterlinearMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTERLINEAR
Tradition interlinear, only works for tagged texts -
INTERLEAVED
interleaving one or more versions with each other -
INTERLEAVED_COMPARE
Interleaving but also having the differences in each text shown -
COLUMN
Column view, where each verse is lined up with the others -
COLUMN_COMPARE
Column view with compare options -
NONE
no interlinear desired
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-