Package net.time4j.calendar.bahai
Enum Class FormattedContent
- All Implemented Interfaces:
Serializable
,Comparable<FormattedContent>
,java.lang.constant.Constable
Controls the type of content to be formatted in the Badi calendar.
- Since:
- 5.3
- Author:
- Meno Hochschild
- See Also:
BadiMonth
,BadiIntercalaryDays
,BadiCalendar.YEAR_OF_VAHID
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMandates the HTML way of transcription of element content in a given language.Calls for the meaning of element content in a given language.Mandates the usual way of transcription of element content in a given language. -
Method Summary
Modifier and TypeMethodDescriptionstatic FormattedContent
Returns the enum constant of this class with the specified name.static FormattedContent[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
TRANSCRIPTION
Mandates the usual way of transcription of element content in a given language. -
MEANING
Calls for the meaning of element content in a given language. -
HTML
Mandates the HTML way of transcription of element content in a given language. Only relevant for a few languages like English, Spanish and Portuguese.
-
-
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
-