|
|
|
@ -54,6 +54,8 @@ public enum SmartStepType { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static SmartStepType parseCode(@NotNull String code){ |
|
|
|
public static SmartStepType parseCode(@NotNull String code){ |
|
|
|
|
|
|
|
if(code==null) |
|
|
|
|
|
|
|
return null; |
|
|
|
for(SmartStepType sst: SmartStepType.values()){ |
|
|
|
for(SmartStepType sst: SmartStepType.values()){ |
|
|
|
if(code.equalsIgnoreCase(sst.code)) |
|
|
|
if(code.equalsIgnoreCase(sst.code)) |
|
|
|
return sst; |
|
|
|
return sst; |
|
|
|
|