Usage:
Contact c = Contact.of( Contact.Property("fn", Text.of("John Doe")), Contact.Property("email", Text.of("jdoe@example.com")), Contact.Property("fax", Tel.of("+32.123456789")) );
101102103104105106107
} Value value = deserializer.deserialize(propertyNode); Contact.Property p = new Contact.Property(group, name, builder.build(), value); properties.add(p); } return new Contact(properties); }