Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated AddressParts.java #405

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/main/java/formflow/library/inputs/AddressParts.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
package formflow.library.inputs;

/**
* Fields used to define an address fragment
*/
public enum AddressParts {
/**
* Street component of an address
*/
STREET_ADDRESS_1("StreetAddress1"),
/**
* Apartment, suite, or office number
*/
STREET_ADDRESS_2("StreetAddress2"),
/**
* City name
*/
CITY("City"),
/**
* The State value stored as the state code, a two character String, for example, "IL", "CA", etc.
*/
STATE("State"),
/**
* Five or nine digit value used by the post office to facilitate the delivery of mail.
*/
ZIPCODE("ZipCode");
private final String value;

Expand Down
Loading