summaryrefslogtreecommitdiffstats
path: root/src/qtmoduleupdater/dependenciesupdateresultenum_string.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/qtmoduleupdater/dependenciesupdateresultenum_string.go')
-rw-r--r--src/qtmoduleupdater/dependenciesupdateresultenum_string.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/qtmoduleupdater/dependenciesupdateresultenum_string.go b/src/qtmoduleupdater/dependenciesupdateresultenum_string.go
new file mode 100644
index 00000000..db80b97c
--- /dev/null
+++ b/src/qtmoduleupdater/dependenciesupdateresultenum_string.go
@@ -0,0 +1,25 @@
+// Code generated by "stringer -type=DependenciesUpdateResultEnum"; DO NOT EDIT.
+
+package main
+
+import "strconv"
+
+func _() {
+ // An "invalid array index" compiler error signifies that the constant values have changed.
+ // Re-run the stringer command to generate them again.
+ var x [1]struct{}
+ _ = x[DependenciesUpdateDependencyMissing-0]
+ _ = x[DependenciesUpdateContentUpToDate-1]
+ _ = x[DependenciesUpdateUpdateScheduled-2]
+}
+
+const _DependenciesUpdateResultEnum_name = "DependenciesUpdateDependencyMissingDependenciesUpdateContentUpToDateDependenciesUpdateUpdateScheduled"
+
+var _DependenciesUpdateResultEnum_index = [...]uint8{0, 35, 68, 101}
+
+func (i DependenciesUpdateResultEnum) String() string {
+ if i < 0 || i >= DependenciesUpdateResultEnum(len(_DependenciesUpdateResultEnum_index)-1) {
+ return "DependenciesUpdateResultEnum(" + strconv.FormatInt(int64(i), 10) + ")"
+ }
+ return _DependenciesUpdateResultEnum_name[_DependenciesUpdateResultEnum_index[i]:_DependenciesUpdateResultEnum_index[i+1]]
+}