Merge "Issue #2581 fix yet another missing LSR event type" into omaha_14.2.1
Former-commit-id:bab7e8fe26
[formerly7b1e9a1aac
[formerly355786a998
] [formerlybab7e8fe26
[formerly 54ddc6ccc48ba57ceb52b3af62885fa12457a601]]] Former-commit-id:7b1e9a1aac
[formerly355786a998
] Former-commit-id:7b1e9a1aac
Former-commit-id:fdf25ae8bc
This commit is contained in:
commit
0371e5b0e1
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue