7a589e7a9ec53b852ce915fd7c168c87c6830d38
[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
18 package enums
19
20 import (
21         "strconv"
22 )
23
24 type ReportingPeriodicity int
25
26 var ReportingPeriodicityValues = map[int]ReportingPeriodicity{
27         1000:  ReportingPeriodicity_one_thousand_ms,
28         2000:  ReportingPeriodicity_two_thousand_ms,
29         5000:  ReportingPeriodicity_five_thousand_ms,
30         10000: ReportingPeriodicity_ten_thousand_ms,
31 }
32
33 var ReportingPeriodicityNames = map[int]string{
34         1: "1000",
35         2: "2000",
36         3: "5000",
37         4: "10000",
38 }
39
40 const (
41         ReportingPeriodicity_one_thousand_ms ReportingPeriodicity = iota + 1
42         ReportingPeriodicity_two_thousand_ms
43         ReportingPeriodicity_five_thousand_ms
44         ReportingPeriodicity_ten_thousand_ms
45 )
46
47 func (x ReportingPeriodicity) String() string {
48         s, ok := ReportingPeriodicityNames[int(x)]
49
50         if ok {
51                 return s
52         }
53
54         return strconv.Itoa(int(x))
55 }
56
57 func GetReportingPeriodicityValuesAsKeys() []int {
58         keys := make([]int, len(ReportingPeriodicityValues))
59
60         i := 0
61         for k := range ReportingPeriodicityValues {
62                 keys[i] = k
63                 i++
64         }
65
66         return keys
67 }
68