2017-08-06 18:28:05 +02:00
|
|
|
// Code generated by "stringer -type=Conflict"; DO NOT EDIT.
|
|
|
|
|
|
|
|
package zfs
|
|
|
|
|
2018-04-01 15:30:04 +02:00
|
|
|
import "strconv"
|
2017-08-06 18:28:05 +02:00
|
|
|
|
|
|
|
const _Conflict_name = "ConflictIncrementalConflictAllRightConflictNoCommonAncestorConflictDiverged"
|
|
|
|
|
|
|
|
var _Conflict_index = [...]uint8{0, 19, 35, 59, 75}
|
|
|
|
|
|
|
|
func (i Conflict) String() string {
|
|
|
|
if i < 0 || i >= Conflict(len(_Conflict_index)-1) {
|
2018-04-01 15:30:04 +02:00
|
|
|
return "Conflict(" + strconv.FormatInt(int64(i), 10) + ")"
|
2017-08-06 18:28:05 +02:00
|
|
|
}
|
|
|
|
return _Conflict_name[_Conflict_index[i]:_Conflict_index[i+1]]
|
|
|
|
}
|