Signpost

class Signpost(val exitNumber: TextWithPhonetics? = null, val exitName: TextWithPhonetics? = null, val towardName: TextWithPhonetics? = null)

The Signpost class contains information about the signpost for the Instruction.

Constructors

Link copied to clipboard
constructor(exitNumber: TextWithPhonetics? = null, exitName: TextWithPhonetics? = null, towardName: TextWithPhonetics? = null)

Properties

Link copied to clipboard

Signpost exit name.

Link copied to clipboard

Signpost exit number.

Link copied to clipboard

Signpost toward name.

Functions

Link copied to clipboard
operator fun component1(): TextWithPhonetics?
Link copied to clipboard
operator fun component2(): TextWithPhonetics?
Link copied to clipboard
operator fun component3(): TextWithPhonetics?
Link copied to clipboard
fun copy(exitNumber: TextWithPhonetics? = this.exitNumber, exitName: TextWithPhonetics? = this.exitName, towardName: TextWithPhonetics? = this.towardName): Signpost

Creates a copy of this Signpost object.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String