Skip to content

Commit

Permalink
feat(#293): add CompasTopo to PrivateEnum
Browse files Browse the repository at this point in the history
Signed-off-by: massifben <105049157+massifben@users.noreply.github.com>
  • Loading branch information
massifben committed Jul 7, 2023
1 parent 09545a3 commit bc0ee92
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ public enum PrivateEnum {
COMPAS_ICDHEADER("COMPAS-ICDHeader", TCompasICDHeader.class),
COMPAS_LDEVICE("COMPAS-LDevice", TCompasLDevice.class),
COMPAS_SCL_FILE_TYPE("COMPAS-SclFileType", TCompasSclFileType.class),
COMPAS_SYSTEM_VERSION("COMPAS-SystemVersion", TCompasSystemVersion.class);
COMPAS_SYSTEM_VERSION("COMPAS-SystemVersion", TCompasSystemVersion.class),
COMPAS_TOPO("COMPAS-Topo", TCompasTopo.class);

private static final Map<Class<?>, PrivateEnum> classToEnum = Arrays.stream(PrivateEnum.values()).collect(Collectors.toMap(
compasPrivateEnum -> compasPrivateEnum.compasClass,
Expand Down

0 comments on commit bc0ee92

Please sign in to comment.