mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-14 19:29:48 +08:00

* update license and terms * Fixes * Create ACKNOWLEDGEMENTS.md * Update ACKNOWLEDGEMENTS.md * Revert go.mod changes and remove go1.11 tests
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
// Copyright 2020 FoxyUtils ehf. All rights reserved.
|
|
//
|
|
// DO NOT EDIT: generated by unioffice ECMA-376 generator
|
|
//
|
|
// Use of this software package and source code is governed by the terms of the
|
|
// UniDoc End User License Agreement (EULA) that is available at:
|
|
// https://unidoc.io/eula/
|
|
// A trial license code for evaluation can be obtained at https://unidoc.io website.
|
|
|
|
package wml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
)
|
|
|
|
// ST_HpsMeasure is a union type
|
|
type ST_HpsMeasure struct {
|
|
ST_UnsignedDecimalNumber *uint64
|
|
ST_PositiveUniversalMeasure *string
|
|
}
|
|
|
|
func (m *ST_HpsMeasure) Validate() error {
|
|
return m.ValidateWithPath("")
|
|
}
|
|
|
|
func (m ST_HpsMeasure) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.ST_UnsignedDecimalNumber != nil {
|
|
e.EncodeToken(xml.CharData(fmt.Sprintf("%d", *m.ST_UnsignedDecimalNumber)))
|
|
}
|
|
if m.ST_PositiveUniversalMeasure != nil {
|
|
e.EncodeToken(xml.CharData(*m.ST_PositiveUniversalMeasure))
|
|
}
|
|
return e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
}
|
|
|
|
func (m *ST_HpsMeasure) ValidateWithPath(path string) error {
|
|
mems := []string{}
|
|
if m.ST_UnsignedDecimalNumber != nil {
|
|
mems = append(mems, "ST_UnsignedDecimalNumber")
|
|
}
|
|
if m.ST_PositiveUniversalMeasure != nil {
|
|
mems = append(mems, "ST_PositiveUniversalMeasure")
|
|
}
|
|
if len(mems) > 1 {
|
|
return fmt.Errorf("%s too many members set: %v", path, mems)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m ST_HpsMeasure) String() string {
|
|
if m.ST_UnsignedDecimalNumber != nil {
|
|
return fmt.Sprintf("%v", *m.ST_UnsignedDecimalNumber)
|
|
}
|
|
if m.ST_PositiveUniversalMeasure != nil {
|
|
return fmt.Sprintf("%v", *m.ST_PositiveUniversalMeasure)
|
|
}
|
|
return ""
|
|
}
|