- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 28 of file Property.java.
◆ Property() [1/2]
◆ Property() [2/2]
org.turro.vcard.properties.Property.Property |
( |
PropertyTag |
tag, |
|
|
VCard |
vcard, |
|
|
String |
value |
|
) |
| |
◆ addType()
void org.turro.vcard.properties.Property.addType |
( |
String |
type | ) |
|
◆ getInstance()
Definition at line 35 of file Property.java.
36 int p = l.indexOf(
":");
37 if(p == -1)
return null;
42 property.setValue(l.substring(p + 1));
Property(PropertyTag tag, VCard vcard)
void readTypes(String s, List< String > types)
◆ getTag()
PropertyTag org.turro.vcard.properties.Property.getTag |
( |
| ) |
|
◆ getTypes()
List<String> org.turro.vcard.properties.Property.getTypes |
( |
| ) |
|
◆ getValue() [1/2]
String org.turro.vcard.properties.Property.getValue |
( |
| ) |
|
◆ getValue() [2/2]
String org.turro.vcard.properties.Property.getValue |
( |
int |
index | ) |
|
Definition at line 61 of file Property.java.
62 String v[] = value.split(
";");
63 return v.length <= index ?
"" : v[index];
◆ getValues()
String [] org.turro.vcard.properties.Property.getValues |
( |
| ) |
|
◆ renderProperty()
void org.turro.vcard.properties.Property.renderProperty |
( |
StringBuilder |
sb | ) |
|
Definition at line 97 of file Property.java.
100 sb.append(
":" + value +
"\n");
void renderTypes(StringBuilder sb, List< String > types)
◆ setValue()
void org.turro.vcard.properties.Property.setValue |
( |
String |
value | ) |
|
◆ setValues()
void org.turro.vcard.properties.Property.setValues |
( |
String[] |
values | ) |
|
The documentation for this class was generated from the following file: