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