aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/NotificationType.java
blob: e78ba7b4df0adf5d1ef195c074c3ff4e36563442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableMap.Builder;
import java.lang.Integer;
import java.lang.Override;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import org.opendaylight.yangtools.yang.binding.Enumeration;

public enum NotificationType implements Enumeration {
    N1MESSAGES(0, "N1_MESSAGES"),
    
    N2INFORMATION(1, "N2_INFORMATION"),
    
    LOCATIONNOTIFICATION(2, "LOCATION_NOTIFICATION")
    ;

    private static final Map<String, NotificationType> NAME_MAP;
    private static final Map<Integer, NotificationType> VALUE_MAP;

    static {
        final Builder<String, NotificationType> nb = ImmutableMap.builder();
        final Builder<Integer, NotificationType> vb = ImmutableMap.builder();
        for (NotificationType enumItem : NotificationType.values()) {
            vb.put(enumItem.value, enumItem);
            nb.put(enumItem.name, enumItem);
        }

        NAME_MAP = nb.build();
        VALUE_MAP = vb.build();
    }

    private final String name;
    private final int value;

    private NotificationType(int value, String name) {
        this.value = value;
        this.name = name;
    }

    @Override
    public String getName() {
        return name;
    }

    @Override
    public int getIntValue() {
        return value;
    }

    /**
     * Return the enumeration member whose {@link #getName()} matches specified value.
     *
     * @param name YANG assigned name
     * @return corresponding NotificationType item, if present
     * @throws NullPointerException if name is null
     */
    public static Optional<NotificationType> forName(String name) {
        return Optional.ofNullable(NAME_MAP.get(Objects.requireNonNull(name)));
    }

    /**
     * Return the enumeration member whose {@link #getIntValue()} matches specified value.
     *
     * @param intValue integer value
     * @return corresponding NotificationType item, or null if no such item exists
     */
    public static NotificationType forValue(int intValue) {
        return VALUE_MAP.get(intValue);
    }
}