Issue #2581 fix yet another missing LSR event type

Change-Id: Ia71aa67038f7f9adc17f7d11e4d38990220e3916

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

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;