소스 검색

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