Separate out ReadDataParams
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / InsertParameter.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.restconf.nb.rfc8040;
9
10 import static java.util.Objects.requireNonNull;
11
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.eclipse.jdt.annotation.Nullable;
14
15 /**
16  * Enumeration of possible {@code insert} values as defined by
17  * <a href="https://datatracker.ietf.org/doc/html/rfc8040#section-4.8.1">RFC8040, section 4.8.1</a>.
18  */
19 public enum InsertParameter {
20     /**
21      * Insert the new data after the insertion point, as specified by the value of the "point" parameter.
22      */
23     AFTER("after"),
24     /**
25      * Insert the new data before the insertion point, as specified by the value of the "point" parameter.
26      */
27     BEFORE("before"),
28     /**
29      * Insert the new data as the new first entry.
30      */
31     FIRST("first"),
32     /**
33      * Insert the new data as the new last entry.
34      */
35     LAST("last");
36
37     private @NonNull String uriValue;
38
39     InsertParameter(final String uriValue) {
40         this.uriValue = requireNonNull(uriValue);
41     }
42
43     public @NonNull String uriValue() {
44         return uriValue;
45     }
46
47     public static @NonNull String uriName() {
48         return "insert";
49     }
50
51     // Note: returns null of unknowns
52     public static @Nullable InsertParameter forUriValue(final String uriValue) {
53         switch (uriValue) {
54             case "after":
55                 return AFTER;
56             case "before":
57                 return BEFORE;
58             case "first":
59                 return FIRST;
60             case "last":
61                 return LAST;
62             default:
63                 return null;
64         }
65     }
66 }