492c64950dadac587447591c2e071816cd2f856f
[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
18 package enums
19
20 import (
21         "strconv"
22 )
23
24 var ReportingPeriodicityRsrPmrValues = map[int]ReportingPeriodicityRSRPMR{
25         120: ReportingPeriodicityRSRPMR_one_hundred_20_ms,
26         240: ReportingPeriodicityRSRPMR_two_hundred_40_ms,
27         480: ReportingPeriodicityRSRPMR_four_hundred_80_ms,
28         640: ReportingPeriodicityRSRPMR_six_hundred_40_ms,
29 }
30
31 var ReportingPeriodicityRsrPmrNames = map[int]string{
32         1: "120",
33         2: "240",
34         3: "480",
35         4: "640",
36 }
37
38 type ReportingPeriodicityRSRPMR int
39
40 const (
41         ReportingPeriodicityRSRPMR_one_hundred_20_ms ReportingPeriodicityRSRPMR = iota + 1
42         ReportingPeriodicityRSRPMR_two_hundred_40_ms
43         ReportingPeriodicityRSRPMR_four_hundred_80_ms
44         ReportingPeriodicityRSRPMR_six_hundred_40_ms
45 )
46
47 func (x ReportingPeriodicityRSRPMR) String() string {
48         s, ok := ReportingPeriodicityRsrPmrNames[int(x)]
49
50         if ok {
51                 return s
52         }
53
54         return strconv.Itoa(int(x))
55 }
56
57 func GetReportingPeriodicityRsrPmrValuesAsKeys() []int {
58         keys := make([]int, len(ReportingPeriodicityRsrPmrValues))
59
60         i := 0
61         for k := range ReportingPeriodicityRsrPmrValues {
62                 keys[i] = k
63                 i++
64         }
65
66         return keys
67 }