Adding new comments for Oran in all files with licenses
[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 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 //  platform project (RICP).
19
20
21 package enums
22
23 import "strconv"
24
25 var ReportingPeriodicityCsirValues = map[int]ReportingPeriodicityCSIR{
26         5:  ReportingPeriodicityCSIR_ms5,
27         10: ReportingPeriodicityCSIR_ms10,
28         20: ReportingPeriodicityCSIR_ms20,
29         40: ReportingPeriodicityCSIR_ms40,
30         80: ReportingPeriodicityCSIR_ms80,
31 }
32
33 var ReportingPeriodicityCsirNames = map[int]string{
34         1: "5",
35         2: "10",
36         3: "20",
37         4: "40",
38         5: "80",
39 }
40
41 type ReportingPeriodicityCSIR int
42
43 const (
44         ReportingPeriodicityCSIR_ms5 ReportingPeriodicityCSIR = iota + 1
45         ReportingPeriodicityCSIR_ms10
46         ReportingPeriodicityCSIR_ms20
47         ReportingPeriodicityCSIR_ms40
48         ReportingPeriodicityCSIR_ms80
49 )
50
51 func (x ReportingPeriodicityCSIR) String() string {
52         s, ok := ReportingPeriodicityCsirNames[int(x)]
53
54         if ok {
55                 return s
56         }
57
58         return strconv.Itoa(int(x))
59 }
60
61 func GetReportingPeriodicityCsirValuesAsKeys() []int {
62         keys := make([]int, len(ReportingPeriodicityCsirValues))
63
64         i := 0
65         for k := range ReportingPeriodicityCsirValues {
66                 keys[i] = k
67                 i++
68         }
69
70         return keys
71 }