VehicleZone

data class VehicleZone<A : VehicleArea>(val areas: Set<A>) : Parcelable

The zone is a set of VehicleArea items which a specific property is bound to.

Parameters

A

The area type as provided by VehicleArea.

areas

The areas that compose the zone.

Constructors

Link copied to clipboard
fun <A : VehicleArea> VehicleZone(vararg areas: A)
Link copied to clipboard
fun <A : VehicleArea> VehicleZone(areas: Set<A>)

Properties

Link copied to clipboard
val areas: Set<A>

Inherited functions

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