Skip to content

Commit

Permalink
Add website field to Field enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Nixsm committed May 17, 2017
1 parent b04d9a4 commit d388e29
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ public enum Field implements AbstractField {
EventType(ContactsContract.CommonDataKinds.Event.CONTENT_ITEM_TYPE,
ContactsContract.CommonDataKinds.Event.TYPE),
EventLabel(ContactsContract.CommonDataKinds.Event.CONTENT_ITEM_TYPE,
ContactsContract.CommonDataKinds.Event.LABEL);
ContactsContract.CommonDataKinds.Event.LABEL),
Website(ContactsContract.CommonDataKinds.Website.CONTENT_ITEM_TYPE,
ContactsContract.CommonDataKinds.Website.URL);

private final String column;
private final String mimeType;
Expand Down

0 comments on commit d388e29

Please sign in to comment.