All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.divpundir.mavlink.api.MavEnum.kt Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
package com.divpundir.mavlink.api

/**
 * A high-level representation of a MAVLink enum.
 */
public interface MavEnum {

    /**
     * The value of the enum entry according to the XML schema.
     */
    public val value: UInt

    /**
     * The companion object for a [MavEnum].
     */
    public interface MavCompanion {

        /**
         * Returns the entry corresponding to the given value if it exists in the enum, null otherwise.
         */
        public fun getEntryFromValueOrNull(v: UInt): T?
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy