* Get the struct value * @this {!FieldModelEnums} * @param {!Enums} fbeValue Default value, defaults is new Enums() * @returns {!Enums} Enums value
(fbeValue = new Enums())
| 4646 | * @returns {!Enums} Enums value |
| 4647 | */ |
| 4648 | get (fbeValue = new Enums()) { |
| 4649 | let fbeBegin = this.getBegin() |
| 4650 | if (fbeBegin === 0) { |
| 4651 | return fbeValue |
| 4652 | } |
| 4653 | |
| 4654 | let fbeStructSize = this.readUInt32(0) |
| 4655 | this.getFields(fbeValue, fbeStructSize) |
| 4656 | this.getEnd(fbeBegin) |
| 4657 | return fbeValue |
| 4658 | } |
| 4659 | |
| 4660 | /** |
| 4661 | * Get the struct fields values |
no test coverage detected