5 package com.microsoft.z3.enumerations;
7 import java.util.HashMap;
18 private final int intValue;
26 private static class Z3_lbool_MappingHolder {
27 private static final Map<Integer, Z3_lbool> intMapping =
new HashMap<>();
30 intMapping.put(k.toInt(), k);
35 Z3_lbool k = Z3_lbool_MappingHolder.intMapping.get(v);
36 if (k !=
null)
return k;
37 throw new IllegalArgumentException(
"Illegal value " + v +
" for Z3_lbool");
40 public final int toInt() {
return this.intValue; }