* Create enum from object value * @param {!number} other Object value * @returns {!EnumTyped} Created enum
(other)
| 333 | * @returns {!EnumTyped} Created enum |
| 334 | */ |
| 335 | static fromObject (other) { |
| 336 | return new EnumTyped(other) |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | // noinspection PointlessArithmeticExpressionJS |