Fix license issues
[ric-plt/resource-status-manager.git] / RSM / enums / reporting_periodicity_csir.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 package enums
19
20 import "strconv"
21
22 var ReportingPeriodicityCsirValues = map[int]ReportingPeriodicityCSIR{
23         5:  ReportingPeriodicityCSIR_ms5,
24         10: ReportingPeriodicityCSIR_ms10,
25         20: ReportingPeriodicityCSIR_ms20,
26         40: ReportingPeriodicityCSIR_ms40,
27         80: ReportingPeriodicityCSIR_ms80,
28 }
29
30 var ReportingPeriodicityCsirNames = map[int]string{
31         1: "5",
32         2: "10",
33         3: "20",
34         4: "40",
35         5: "80",
36 }
37
38 type ReportingPeriodicityCSIR int
39
40 const (
41         ReportingPeriodicityCSIR_ms5 ReportingPeriodicityCSIR = iota + 1
42         ReportingPeriodicityCSIR_ms10
43         ReportingPeriodicityCSIR_ms20
44         ReportingPeriodicityCSIR_ms40
45         ReportingPeriodicityCSIR_ms80
46 )
47
48 func (x ReportingPeriodicityCSIR) String() string {
49         s, ok := ReportingPeriodicityCsirNames[int(x)]
50
51         if ok {
52                 return s
53         }
54
55         return strconv.Itoa(int(x))
56 }
57
58 func GetReportingPeriodicityCsirValuesAsKeys() []int {
59         keys := make([]int, len(ReportingPeriodicityCsirValues))
60
61         i := 0
62         for k := range ReportingPeriodicityCsirValues {
63                 keys[i] = k
64                 i++
65         }
66
67         return keys
68 }