mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00
17 lines
441 B
Go
17 lines
441 B
Go
// Code generated by "stringer -type=LicenseType"; DO NOT EDIT.
|
|
|
|
package gooxml
|
|
|
|
import "fmt"
|
|
|
|
const _LicenseType_name = "LicenseTypeInvalidLicenseTypeAGPLLicenseTypeCommercial"
|
|
|
|
var _LicenseType_index = [...]uint8{0, 18, 33, 54}
|
|
|
|
func (i LicenseType) String() string {
|
|
if i >= LicenseType(len(_LicenseType_index)-1) {
|
|
return fmt.Sprintf("LicenseType(%d)", i)
|
|
}
|
|
return _LicenseType_name[_LicenseType_index[i]:_LicenseType_index[i+1]]
|
|
}
|