ReferenceType enum

The kind of reference a BibleReference is.

Inheritance

Constructors

ReferenceType()
const

Values

VERSE → const ReferenceType

A reference that contains a book, chapter, and single verse.

Genesis 2:3 for example. Generally associated with the Verse class.

VERSE_RANGE → const ReferenceType

A reference that contains a book, chapter, and multiple verses within the same chapter.

For example, Genesis 2:2-4 is a verse range but not Genesis 2:2 - 3:5, this is an example of a CHAPTER_RANGE.

CHAPTER → const ReferenceType

A reference that contains a book and a chapter.

Genesis 2 is an example. Generally associated with the Chapter class.

CHAPTER_RANGE → const ReferenceType

A reference that spans multiple chapters.

Genesis 2-3 or Genesis 2:3 - 2:5 are examples of chapter ranges.

BOOK → const ReferenceType

A reference that contains only a book.

Genesis for example.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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
toString() String
A string representation of this object.
inherited

Operators

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

Constants

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