* Get the value * @this {!FieldModelEnumUInt8} * @returns {!object} Result value and its size
()
| 1100 | * @returns {!object} Result value and its size |
| 1101 | */ |
| 1102 | get () { |
| 1103 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 1104 | return { value: new EnumUInt8(), size: 0 } |
| 1105 | } |
| 1106 | |
| 1107 | return { value: new EnumUInt8(this.readUInt8(this.fbeOffset)), size: this.fbeSize } |
| 1108 | } |
| 1109 | |
| 1110 | /** |
| 1111 | * Set the value |