浏览代码

Added Neither Employed nor employer to census entry worker

Andrew Grant 6 月之前
父节点
当前提交
9521ea70bc
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/main/java/scot/carricksoftware/grants/enums/censusentry/CensusEntryWorker.java

+ 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")