Issue #2581 fix yet another missing LSR event type

Change-Id: Ia71aa67038f7f9adc17f7d11e4d38990220e3916

Former-commit-id: 61e756d41d [formerly 15d60e228d] [formerly 60652fe5a7] [formerly 60652fe5a7 [formerly 7cbfaf7d7d]] [formerly 9c5a95e814 [formerly 60652fe5a7 [formerly 7cbfaf7d7d] [formerly 9c5a95e814 [formerly 6aac0862eb647a50b9f60cd290c3bb6f96807b3d]]]]
Former-commit-id: 9c5a95e814
Former-commit-id: 1aa03518963dd7cd5032efa16bcccb3e7df79a7a [formerly 8b1e1147367ff7c813177afe2efb0137e91ae5be] [formerly 5fded8bd27 [formerly 451d340bf1]]
Former-commit-id: 5fded8bd27
Former-commit-id: 9e1d9dc92e
This commit is contained in:
Nate Jensen 2014-01-17 09:46:26 -06:00
parent fd5b08e860
commit c51a0e9e73

View file

@ -36,6 +36,7 @@ import java.util.Map;
* Dec 09, 2013 2581 njensen Added freezing drizzle
* Jan 03, 2014 2581 njensen Added coastal flood
* Jan 13, 2014 2581 njensen Added debris flow
* Jan 17, 2014 2581 njensen Added blowing snow
*
* </pre>
*
@ -87,7 +88,10 @@ public enum LSREventType {
WILDFIRE("WILDFIRE",39,LSRUnits.NOUNITS),
FREEZINGDRIZZLE("FREEZING DRIZZLE", 40, LSRUnits.NOUNITS),
COASTALFLOOD("COASTAL FLOOD", 41, LSRUnits.NOUNITS),
DEBRISFLOW("DEBRIS FLOW", 42, LSRUnits.NOUNITS);
DEBRISFLOW("DEBRIS FLOW", 42, LSRUnits.NOUNITS),
BLOWINGSNOW("BLOWING SNOW", 43, LSRUnits.NOUNITS);
// TODO contemplate storing the event type as a string in the database instead of an enum/integer
private final String eventName;