aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 934 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Autoconfiguration mode
* @class OcaIP4AutoconfigMode
*/
export class OcaIP4AutoconfigMode extends Enum({
None: 0,
DHCP: 1,
DHCP_LINKLOCAL: 2,
LINKLOCAL: 3,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaIP4AutoconfigMode}
* @member None
* @memberof OcaIP4AutoconfigMode
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaIP4AutoconfigMode}
* @member DHCP
* @memberof OcaIP4AutoconfigMode
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaIP4AutoconfigMode}
* @member DHCP_LINKLOCAL
* @memberof OcaIP4AutoconfigMode
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaIP4AutoconfigMode}
* @member LINKLOCAL
* @memberof OcaIP4AutoconfigMode
* @static
*/