We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the Simple-Contacts wiki!
Adding categories into VCard:
https://github.com/mangstadt/ez-vcard/blob/master/src/main/java/ezvcard/property/Categories.java
VCard vcard = new VCard(); Categories categories = new Categories(); categories.getValues().add("Developer"); categories.getValues().add("Java coder"); categories.getValues().add("Ladies' man"); vcard.setCategories(categories);