Adding new comments for Oran in all files with licenses
[ric-plt/resource-status-manager.git] / RSM / enums / reporting_periodicity_rsr_pmr.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 (
24         "strconv"
25 )
26
27 var ReportingPeriodicityRsrPmrValues = map[int]ReportingPeriodicityRSRPMR{
28         120: ReportingPeriodicityRSRPMR_one_hundred_20_ms,
29         240: ReportingPeriodicityRSRPMR_two_hundred_40_ms,
30         480: ReportingPeriodicityRSRPMR_four_hundred_80_ms,
31         640: ReportingPeriodicityRSRPMR_six_hundred_40_ms,
32 }
33
34 var ReportingPeriodicityRsrPmrNames = map[int]string{
35         1: "120",
36         2: "240",
37         3: "480",
38         4: "640",
39 }
40
41 type ReportingPeriodicityRSRPMR int
42
43 const (
44         ReportingPeriodicityRSRPMR_one_hundred_20_ms ReportingPeriodicityRSRPMR = iota + 1
45         ReportingPeriodicityRSRPMR_two_hundred_40_ms
46         ReportingPeriodicityRSRPMR_four_hundred_80_ms
47         ReportingPeriodicityRSRPMR_six_hundred_40_ms
48 )
49
50 func (x ReportingPeriodicityRSRPMR) String() string {
51         s, ok := ReportingPeriodicityRsrPmrNames[int(x)]
52
53         if ok {
54                 return s
55         }
56
57         return strconv.Itoa(int(x))
58 }
59
60 func GetReportingPeriodicityRsrPmrValuesAsKeys() []int {
61         keys := make([]int, len(ReportingPeriodicityRsrPmrValues))
62
63         i := 0
64         for k := range ReportingPeriodicityRsrPmrValues {
65                 keys[i] = k
66                 i++
67         }
68
69         return keys
70 }