Browse Source

Added Neither Employed nor employer to census entry worker

Andrew Grant 6 months ago
parent
commit
9521ea70bc

+ 2 - 0
src/main/java/scot/carricksoftware/grants/enums/censusentry/CensusEntryWorker.java

@@ -8,6 +8,8 @@ package scot.carricksoftware.grants.enums.censusentry;
 public enum CensusEntryWorker {
     @SuppressWarnings("unused") WORKER("Worker"),
     @SuppressWarnings("unused") EMPLOYER("Employer"),
+    @SuppressWarnings("unused") EMPLOYED("Employed"),
+    @SuppressWarnings("unused") NEITHER_EMPLOYED_OR_EMPLOYER("Neither Employed or Employer"),
     OWN_ACCOUNT("Own Account");
 
     @SuppressWarnings("unused")