* Get the value * @this {!FieldModelEnumWChar} * @returns {!object} Result value and its size
()
| 658 | * @returns {!object} Result value and its size |
| 659 | */ |
| 660 | get () { |
| 661 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 662 | return { value: new EnumWChar(), size: 0 } |
| 663 | } |
| 664 | |
| 665 | return { value: new EnumWChar(this.readUInt32(this.fbeOffset)), size: this.fbeSize } |
| 666 | } |
| 667 | |
| 668 | /** |
| 669 | * Set the value |
nothing calls this directly
no test coverage detected