Skip to content

Commit 2d73bcb

Browse files
authored
Add noModelElementSet value to enum (#19)
1 parent 20a10dd commit 2d73bcb

File tree

1 file changed

+4
-2
lines changed
  • src/main/java/edu/uiowa/cs/clc/kind2/results

1 file changed

+4
-2
lines changed

src/main/java/edu/uiowa/cs/clc/kind2/results/Object.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public enum Object
2424
modelElementSet("modelElementSet"),
2525
progress("progress"),
2626
lsp("lsp"),
27-
modelSetEnumeration("modelSetEnumeration");
28-
27+
modelSetEnumeration("modelSetEnumeration"),
28+
noModelElementSet("noModelElementSet");
2929
private final String value;
3030

3131
private Object(String value)
@@ -63,6 +63,8 @@ public static Object getKind2Object(String kind2Object)
6363
return lsp;
6464
case "modelSetEnumeration":
6565
return modelSetEnumeration;
66+
case "noModelElementSet":
67+
return noModelElementSet;
6668
default:
6769
throw new UnsupportedOperationException("Value " + kind2Object + " is not defined");
6870
}

0 commit comments

Comments
 (0)