SourceType source = new SourceType();
source.setSource("Whatever");
vcard.setSource(source);
NType n = new NType();
n.setEncodingType(EncodingType.QUOTED_PRINTABLE);
n.setCharset(Charset.forName("UTF-8"));
n.setLanguage(LanguageType.EN);
n.setFamilyName("DÖe");
// n.setFamilyName("Doe");
n.setGivenName("John");
n.addHonorificPrefix("Mr.");
n.addHonorificSuffix("I");
n.addAdditionalName("Johny");
vcard.setN(n);
FNType fn = new FNType();
fn.setFormattedName("John \"Johny\" Doe");
fn.setCharset(Charset.forName("UTF-8"));