VoltageRange

data class VoltageRange @JvmOverloads constructor(var minimalVoltage: Float = -1.0F, var maximalVoltage: Float = -1.0F) : Parcelable

Constructors

Link copied to clipboard
fun VoltageRange(minimalVoltage: Float = -1.0F, maximalVoltage: Float = -1.0F)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard

in volts, -1 = undefined, maximalVoltage must be >= minimalVoltage if both are defined

Link copied to clipboard

in volts, -1 = undefined, minimalVoltage must be <= maximalVoltage if both are defined