Quintuple

data class Quintuple<out A, out B, out C, out D, out E>(val first: A, val second: B, val third: C, val fourth: D, val fifth: E) : Serializable(source)

Carries Quintuple data through the SDAI core common layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(first: A, second: B, third: C, fourth: D, fifth: E)

Properties

Link copied to clipboard
val fifth: E

Exposes the fifth value used by the SDAI core common layer.

Link copied to clipboard
val first: A

Exposes the first value used by the SDAI core common layer.

Link copied to clipboard
val fourth: D

Exposes the fourth value used by the SDAI core common layer.

Link copied to clipboard
val second: B

Exposes the second value used by the SDAI core common layer.

Link copied to clipboard
val third: C

Exposes the third value used by the SDAI core common layer.

Functions

Link copied to clipboard
open override fun toString(): String

Converts SDAI data with toString.