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
|
// Code generated by "stringer -linecomment -type=v3Key"; DO NOT EDIT.
package cvss
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[v3AttackVector-0]
_ = x[v3AttackComplexity-1]
_ = x[v3PrivilegesRequired-2]
_ = x[v3UserInteraction-3]
_ = x[v3Scope-4]
_ = x[v3Confidentiality-5]
_ = x[v3Integrity-6]
_ = x[v3Availability-7]
_ = x[v3ExploitCodeMaturity-8]
_ = x[v3RemediationLevel-9]
_ = x[v3ReportConfidence-10]
_ = x[v3ConfidentialityRequirement-11]
_ = x[v3IntegrityRequirement-12]
_ = x[v3AvailabilityRequirement-13]
_ = x[v3ModifiedAttackVector-14]
_ = x[v3ModifiedAttackComplexity-15]
_ = x[v3ModifiedPrivilegesRequired-16]
_ = x[v3ModifiedUserInteraction-17]
_ = x[v3ModifiedScope-18]
_ = x[v3ModifiedConfidentiality-19]
_ = x[v3ModifiedIntegrity-20]
_ = x[v3ModifiedAvailability-21]
_ = x[v3InvalidKey-22]
}
const _v3Key_name = "AVACPRUISCIAERLRCCRIRARMAVMACMPRMUIMSMCMIMAinvalid"
var _v3Key_index = [...]uint8{0, 2, 4, 6, 8, 9, 10, 11, 12, 13, 15, 17, 19, 21, 23, 26, 29, 32, 35, 37, 39, 41, 43, 50}
func (i v3Key) String() string {
if i >= v3Key(len(_v3Key_index)-1) {
return "v3Key(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _v3Key_name[_v3Key_index[i]:_v3Key_index[i+1]]
}
|