|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectezvcard.property.VCardProperty
ezvcard.property.SimpleProperty<String>
ezvcard.property.TextProperty
ezvcard.property.Email
public class Email
An email address associated with a person.
Code sample
VCard vcard = new VCard(); Email email = new Email("superdude55@hotmail.com"); email.addType(EmailType.HOME); vcard.addEmail(email); email = new Email("doe.john@company.com"); email.addType(EmailType.WORK); email.setPref(1); //the most preferred email vcard.addEmail(email);
Property name: EMAIL
Supported versions: 2.1, 3.0, 4.0
Field Summary |
---|
Fields inherited from class ezvcard.property.SimpleProperty |
---|
value |
Fields inherited from class ezvcard.property.VCardProperty |
---|
group, parameters |
Constructor Summary | |
---|---|
Email(String email)
Creates an email property. |
Method Summary | |
---|---|
protected void |
_validate(List<Warning> warnings,
VCardVersion version,
VCard vcard)
Checks the property for data consistency problems or deviations from the spec. |
void |
addPid(int localId,
int clientPidMapRef)
Adds a PID value. |
void |
addType(EmailType type)
Adds a TYPE parameter. |
String |
getAltId()
Gets the property's ALTID parameter. |
List<Integer[]> |
getPids()
Gets all PID values. |
Integer |
getPref()
Gets the preference value. |
Set<EmailType> |
getTypes()
Gets all the TYPE parameters. |
void |
removePids()
Removes all PID values. |
void |
removeType(EmailType type)
Removes a TYPE parameter. |
void |
setAltId(String altId)
Sets the property's ALTID parameter. |
void |
setPref(Integer pref)
Sets the preference value. |
Methods inherited from class ezvcard.property.SimpleProperty |
---|
getValue, setValue |
Methods inherited from class ezvcard.property.VCardProperty |
---|
_supportedVersions, addParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, removeParameter, setGroup, setParameter, setParameters, validate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Email(String email)
email
- the email (e.g. "johndoe@example.com")Method Detail |
---|
public Set<EmailType> getTypes()
public void addType(EmailType type)
type
- the TYPE parameter to addpublic void removeType(EmailType type)
type
- the TYPE parameter to removepublic List<Integer[]> getPids()
VCardProperty
Gets all PID values.
Supported versions: 4.0
VCardParameters.getPids()
public void addPid(int localId, int clientPidMapRef)
VCardProperty
Adds a PID value.
Supported versions: 4.0
localId
- the local IDclientPidMapRef
- the ID used to reference the property's globally
unique identifier in the CLIENTPIDMAP property.VCardParameters.addPid(int, int)
public void removePids()
VCardProperty
Removes all PID values.
Supported versions: 4.0
VCardParameters.removePids()
public Integer getPref()
VCardProperty
Gets the preference value. The lower the number, the more preferred this property instance is compared with other properties in the same vCard of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
Supported versions: 4.0
VCardParameters.getPref()
public void setPref(Integer pref)
VCardProperty
Sets the preference value. The lower the number, the more preferred this property instance is compared with other properties in the same vCard of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
Supported versions: 4.0
pref
- the preference value or null to removeVCardParameters.setPref(java.lang.Integer)
public String getAltId()
HasAltId
Supported versions: 4.0
getAltId
in interface HasAltId
VCardParameters.getAltId()
public void setAltId(String altId)
HasAltId
Supported versions: 4.0
setAltId
in interface HasAltId
altId
- the ALTID or null to removeVCardParameters.setAltId(java.lang.String)
protected void _validate(List<Warning> warnings, VCardVersion version, VCard vcard)
VCardProperty
_validate
in class SimpleProperty<String>
warnings
- the list to add the warnings toversion
- the version to check the property againstvcard
- the vCard this property belongs to
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |