* Get the value * @this {!FieldModelEnumUInt32} * @param {EnumUInt32=} defaults Default value, defaults is new EnumUInt32() * @returns {!EnumUInt32} Result value
(defaults = new EnumUInt32())
| 1918 | * @returns {!EnumUInt32} Result value |
| 1919 | */ |
| 1920 | get (defaults = new EnumUInt32()) { |
| 1921 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1922 | return defaults |
| 1923 | } |
| 1924 | |
| 1925 | return new EnumUInt32(this.readUInt32(this.fbeOffset)) |
| 1926 | } |
| 1927 | |
| 1928 | /** |
| 1929 | * Set the value |
nothing calls this directly
no test coverage detected