TrackAttribute

data class TrackAttribute<T : Number>(tuneableTrackAttribute: TuneableTrackAttribute<T>, value: T)

The track attribute wrapper contains a set value for a specific TuneableTrackAttribute

Parameters

tuneableTrackAttribute

The TuneableTrackAttribute that this TrackAttribute will correspond to.

value

The value of the tuneableTrackAttribute.

Constructors

TrackAttribute
Link copied to clipboard
common
fun <T : Number> TrackAttribute(tuneableTrackAttribute: TuneableTrackAttribute<T>, value: T)
The TuneableTrackAttribute that this TrackAttribute will correspond to.

Types

Companion
Link copied to clipboard
common
object Companion

Functions

component1
Link copied to clipboard
common
operator fun component1(): TuneableTrackAttribute<T>
component2
Link copied to clipboard
common
operator fun component2(): T
copy
Link copied to clipboard
common
fun copy(tuneableTrackAttribute: TuneableTrackAttribute<T>, value: T): TrackAttribute<T>
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

tuneableTrackAttribute
Link copied to clipboard
common
val tuneableTrackAttribute: TuneableTrackAttribute<T>
The TuneableTrackAttribute that this TrackAttribute will correspond to.
value
Link copied to clipboard
common
val value: T
The value of the tuneableTrackAttribute.

Sources

(source)
Link copied to clipboard