aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/TResourceSharingLevel.java
blob: ea8eca6ecf97ffb4083ac096fb97462e2cea10dc (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
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 TResourceSharingLevel implements Enumeration {
    Shared(0, "shared"),
    
    NotShared(1, "not-shared")
    ;

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

    static {
        final Builder<String, TResourceSharingLevel> nb = ImmutableMap.builder();
        final Builder<Integer, TResourceSharingLevel> vb = ImmutableMap.builder();
        for (TResourceSharingLevel enumItem : TResourceSharingLevel.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 TResourceSharingLevel(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 TResourceSharingLevel item, if present
     * @throws NullPointerException if name is null
     */
    public static Optional<TResourceSharingLevel> 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 TResourceSharingLevel item, or null if no such item exists
     */
    public static TResourceSharingLevel forValue(int intValue) {
        return VALUE_MAP.get(intValue);
    }
}