18 package org.turro.vcard;
20 import java.util.ArrayList;
21 import java.util.List;
22 import java.util.Vector;
23 import org.turro.vcard.properties.Property;
24 import org.turro.vcard.properties.PropertyTag;
25 import org.turro.vcard.properties.Version;
46 StringBuilder sb =
new StringBuilder();
48 sb.append(
"BEGIN:VCARD\n");
55 sb.append(
"END:VCARD\n");
66 if(p.getTag().equals(tag)) {
74 List<Property> props =
new ArrayList<Property>();
76 if(p.getTag().equals(tag)) {
84 for(String l : lines) {
List< Property > properties
List< Property > getProperties(PropertyTag tag)
Property getProperty(PropertyTag tag)
void addProperty(Property property)
void readLines(List< String > lines)
static Property getInstance(VCard vcard, PropertyTag tag, String l)
static PropertyTag getInstance(String l)
void renderVersion(StringBuilder sb)