Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/main/java/edu/uiowa/cs/clc/kind2/results/Object.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public enum Object
modelElementSet("modelElementSet"),
progress("progress"),
lsp("lsp"),
modelSetEnumeration("modelSetEnumeration");

modelSetEnumeration("modelSetEnumeration"),
noModelElementSet("noModelElementSet");
private final String value;

private Object(String value)
Expand Down Expand Up @@ -63,6 +63,8 @@ public static Object getKind2Object(String kind2Object)
return lsp;
case "modelSetEnumeration":
return modelSetEnumeration;
case "noModelElementSet":
return noModelElementSet;
default:
throw new UnsupportedOperationException("Value " + kind2Object + " is not defined");
}
Expand Down