971546956269165e12efd32f5ba4fed0cffa6631
[ric-plt/resource-status-manager.git] / RSM / enums / reporting_periodicity.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 type ReportingPeriodicity int
28
29 var ReportingPeriodicityValues = map[int]ReportingPeriodicity{
30         1000:  ReportingPeriodicity_one_thousand_ms,
31         2000:  ReportingPeriodicity_two_thousand_ms,
32         5000:  ReportingPeriodicity_five_thousand_ms,
33         10000: ReportingPeriodicity_ten_thousand_ms,
34 }
35
36 var ReportingPeriodicityNames = map[int]string{
37         1: "1000",
38         2: "2000",
39         3: "5000",
40         4: "10000",
41 }
42
43 const (
44         ReportingPeriodicity_one_thousand_ms ReportingPeriodicity = iota + 1
45         ReportingPeriodicity_two_thousand_ms
46         ReportingPeriodicity_five_thousand_ms
47         ReportingPeriodicity_ten_thousand_ms
48 )
49
50 func (x ReportingPeriodicity) String() string {
51         s, ok := ReportingPeriodicityNames[int(x)]
52
53         if ok {
54                 return s
55         }
56
57         return strconv.Itoa(int(x))
58 }
59
60 func GetReportingPeriodicityValuesAsKeys() []int {
61         keys := make([]int, len(ReportingPeriodicityValues))
62
63         i := 0
64         for k := range ReportingPeriodicityValues {
65                 keys[i] = k
66                 i++
67         }
68
69         return keys
70 }
71