|
|
|
@@ -42,7 +42,7 @@ public enum EnumSharingReceiverApplymentState { |
|
|
|
|
|
|
|
public static EnumSharingReceiverApplymentState getEnum(ApplymentStateEnum applymentStateEnum) { |
|
|
|
for (EnumSharingReceiverApplymentState value : values()) { |
|
|
|
if (value.getApplymentStateEnum().equals(applymentStateEnum)) { |
|
|
|
if (applymentStateEnum != null && applymentStateEnum.equals(value.getApplymentStateEnum())) { |
|
|
|
return value; |
|
|
|
} |
|
|
|
} |
|
|
|
|