Skip to content

Commit

Permalink
TMI2-355: updated enums (#62)
Browse files Browse the repository at this point in the history
* updated orgType and fundingLocation enums

* formatting
  • Loading branch information
rachelswart authored Nov 8, 2023
1 parent 0ea0c3a commit c94ab30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

public enum GrantMandatoryQuestionFundingLocation {

NORTH_EAST_ENGLAND("North East England"), NORTH_WEST_ENGLAND("North West England"),
NORTH_EAST_ENGLAND("North East (England)"), NORTH_WEST_ENGLAND("North West (England)"),
YORKSHIRE_AND_THE_HUMBER("Yorkshire and the Humber"), EAST_MIDLANDS_ENGLAND("East Midlands (England)"),
WEST_MIDLANDS("West Midlands"), EAST_ENGLAND("East England"), LONDON("London"),
SOUTH_EAST_ENGLAND("South East England"), SOUTH_WEST_ENGLAND("South West England"), MIDLANDS("Midlands"),
SCOTLAND("Scotland"), WALES("Wales"), NORTHERN_IRELAND("Northern Ireland"), OUTSIDE_UK("Outside UK");
WEST_MIDLANDS("West Midlands (England)"), EAST_ENGLAND("East England"), LONDON("London"),
SOUTH_EAST_ENGLAND("South East (England)"), SOUTH_WEST_ENGLAND("South West (England)"), MIDLANDS("Midlands"),
SCOTLAND("Scotland"), WALES("Wales"), NORTHERN_IRELAND("Northern Ireland"), OUTSIDE_UK("Outside of the UK");

private final String name;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
public enum GrantMandatoryQuestionOrgType {

LIMITED_COMPANY("Limited company"), NON_LIMITED_COMPANY("Non-limited company"),
REGISTERED_CHARITY("Registered charity"), UNREGISTERED_CHARITY("Unregistered charity"), OTHER("Other");
REGISTERED_CHARITY("Registered charity"), UNREGISTERED_CHARITY("Unregistered charity"), CHARITY("Charity"),
INDIVIDUAL("I am applying as an Individual"), OTHER("Other");

private String name;

Expand Down

0 comments on commit c94ab30

Please sign in to comment.