aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 888 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Network status enum.
* @class OcaNetworkStatus
*/
export class OcaNetworkStatus extends Enum({
Unknown: 0,
Ready: 1,
StartingUp: 2,
Stopped: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaNetworkStatus}
* @member Unknown
* @memberof OcaNetworkStatus
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaNetworkStatus}
* @member Ready
* @memberof OcaNetworkStatus
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaNetworkStatus}
* @member StartingUp
* @memberof OcaNetworkStatus
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaNetworkStatus}
* @member Stopped
* @memberof OcaNetworkStatus
* @static
*/