We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20a10dd commit 2d73bcbCopy full SHA for 2d73bcb
src/main/java/edu/uiowa/cs/clc/kind2/results/Object.java
@@ -24,8 +24,8 @@ public enum Object
24
modelElementSet("modelElementSet"),
25
progress("progress"),
26
lsp("lsp"),
27
- modelSetEnumeration("modelSetEnumeration");
28
-
+ modelSetEnumeration("modelSetEnumeration"),
+ noModelElementSet("noModelElementSet");
29
private final String value;
30
31
private Object(String value)
@@ -63,6 +63,8 @@ public static Object getKind2Object(String kind2Object)
63
return lsp;
64
case "modelSetEnumeration":
65
return modelSetEnumeration;
66
+ case "noModelElementSet":
67
+ return noModelElementSet;
68
default:
69
throw new UnsupportedOperationException("Value " + kind2Object + " is not defined");
70
}
0 commit comments