* Get the value * @this {!FieldModelEnumInt32} * @returns {!object} Result value and its size
()
| 1763 | * @returns {!object} Result value and its size |
| 1764 | */ |
| 1765 | get () { |
| 1766 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1767 | return { value: new EnumInt32(), size: 0 } |
| 1768 | } |
| 1769 | |
| 1770 | return { value: new EnumInt32(this.readInt32(this.fbeOffset)), size: this.fbeSize } |
| 1771 | } |
| 1772 | |
| 1773 | /** |
| 1774 | * Set the value |