diff options
Diffstat (limited to 'internal/cpe/part_string.go')
-rw-r--r-- | internal/cpe/part_string.go | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/internal/cpe/part_string.go b/internal/cpe/part_string.go new file mode 100644 index 0000000..98b9fd3 --- /dev/null +++ b/internal/cpe/part_string.go @@ -0,0 +1,41 @@ +// Code generated by "stringer -linecomment -type=Part"; DO NOT EDIT. + +package cpe + +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[ApplicationPart-97] + _ = x[OperatingSystemPart-111] + _ = x[HardwarePart-104] + _ = x[AnyPart-42] + _ = x[NAPart-45] +} + +const ( + _Part_name_0 = "*" + _Part_name_1 = "-" + _Part_name_2 = "a" + _Part_name_3 = "h" + _Part_name_4 = "o" +) + +func (i Part) String() string { + switch { + case i == 42: + return _Part_name_0 + case i == 45: + return _Part_name_1 + case i == 97: + return _Part_name_2 + case i == 104: + return _Part_name_3 + case i == 111: + return _Part_name_4 + default: + return "Part(" + strconv.FormatInt(int64(i), 10) + ")" + } +} |