-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathstring.gen.go
51 lines (44 loc) · 1.8 KB
/
string.gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2016 The go-qemu Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by "stringer -type=Status -output=string.gen.go"; DO NOT EDIT.
package qemu
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[StatusDebug-0]
_ = x[StatusFinishMigrate-7]
_ = x[StatusGuestPanicked-14]
_ = x[StatusIOError-3]
_ = x[StatusInMigrate-1]
_ = x[StatusInternalError-2]
_ = x[StatusPaused-4]
_ = x[StatusPostMigrate-5]
_ = x[StatusPreLaunch-6]
_ = x[StatusRestoreVM-8]
_ = x[StatusRunning-9]
_ = x[StatusSaveVM-10]
_ = x[StatusShutdown-11]
_ = x[StatusSuspended-12]
_ = x[StatusWatchdog-13]
}
const _Status_name = "StatusDebugStatusInMigrateStatusInternalErrorStatusIOErrorStatusPausedStatusPostMigrateStatusPreLaunchStatusFinishMigrateStatusRestoreVMStatusRunningStatusSaveVMStatusShutdownStatusSuspendedStatusWatchdogStatusGuestPanicked"
var _Status_index = [...]uint8{0, 11, 26, 45, 58, 70, 87, 102, 121, 136, 149, 161, 175, 190, 204, 223}
func (i Status) String() string {
if i < 0 || i >= Status(len(_Status_index)-1) {
return "Status(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Status_name[_Status_index[i]:_Status_index[i+1]]
}