ParagraphFormat enum

Defines the formatting for a paragraph of text.

Inheritance
Available extensions

Values

p → const ParagraphFormat

paragraph

The first line is indented and subsequent lines are not.

const ParagraphFormat('p')
pi1 → const ParagraphFormat

indented paragraph level 1

Similar indentation style as p but everything is further indented. That is, first line is indented extra and subsequent lines also indented.

const ParagraphFormat('pi1')
m → const ParagraphFormat

margin, no indentation

const ParagraphFormat('m')
mi → const ParagraphFormat

indented flush left paragraph

Similar indentation style as m but everything is further indented.

const ParagraphFormat('mi')
b → const ParagraphFormat

break, blank vertical space

const ParagraphFormat('b')
q1 → const ParagraphFormat

poetry indentation level 1

const ParagraphFormat('q1')
q2 → const ParagraphFormat

poetry indentation level 2

const ParagraphFormat('q2')
pmo → const ParagraphFormat

Embedded text opening

const ParagraphFormat('pmo')
li1 → const ParagraphFormat

list item level 1

const ParagraphFormat('li1')
li2 → const ParagraphFormat

list item level 2

const ParagraphFormat('li2')
pc → const ParagraphFormat

centered

Example: MENE, MENE, TEKEL, PARSIN.

const ParagraphFormat('pc')
qr → const ParagraphFormat

right aligned

Example: Selah

const ParagraphFormat('qr')
d → const ParagraphFormat

Descriptive Title

Example: (Psalms "Of David")

const ParagraphFormat('d')
r → const ParagraphFormat

Cross Reference

const ParagraphFormat('r')
s1 → const ParagraphFormat

Section Heading Level 1

const ParagraphFormat('s1')
s2 → const ParagraphFormat

Section Heading Level 2

const ParagraphFormat('s2')
ms → const ParagraphFormat

major section (Psalms)

const ParagraphFormat('ms')
ms1 → const ParagraphFormat

Major Section Level 1 (Added)

const ParagraphFormat('ms1')
ms2 → const ParagraphFormat

Major Section Level 2 (Added)

const ParagraphFormat('ms2')
mr → const ParagraphFormat

major section range (Psalms)

const ParagraphFormat('mr')
qa → const ParagraphFormat

Acrostic Heading (Psalm 119)

const ParagraphFormat('qa')
sp → const ParagraphFormat

Speaker Identification (Song of Solomon / Job)

const ParagraphFormat('sp')

Properties

hashCode int
The hash code for this object.
no setterinherited
id String
The stable string value of the enum, used for database storage.
final
index int
A numeric identifier for the enumerated value.
no setterinherited
isBiblicalText bool
A convenience getter to check if the format is for main biblical text as opposed to headings, titles, or other metadata.
no setter
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
Serializes the enum into a string for database storage.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<ParagraphFormat>
A constant List of the values in this enum, in order of their declaration.