@SupportedVersions(value=V4_0) public class Interest extends TextProperty implements HasAltId
Defines a recreational activity that the person is interested in. For
example, if a person has an interest in "hockey", it would mean that he likes
to watch hockey games. Someone who likes to actually play hockey would
list hockey as a Hobby
instead.
Code sample
VCard vcard = new VCard(); Interest interest = new Interest("hockey"); interest.setLevel(InterestLevel.HIGH); vcard.addInterest(interest);
Property name: INTEREST
Supported versions: 4.0
value
group, parameters
Constructor and Description |
---|
Interest(Interest original)
Copy constructor.
|
Interest(String interest)
Creates an interest property.
|
Modifier and Type | Method and Description |
---|---|
Interest |
copy()
Creates a copy of this property object.
|
String |
getAltId()
Gets the property's ALTID parameter.
|
Integer |
getIndex()
Gets the sorted position of this property when it is grouped together
with other properties of the same type.
|
String |
getLanguage()
Gets the language that the property value is written in.
|
InterestLevel |
getLevel()
Gets the level of the person's interest.
|
Integer |
getPref()
Gets this property's preference value.
|
String |
getType()
Gets the TYPE parameter.
|
void |
setAltId(String altId)
Sets the property's ALTID parameter.
|
void |
setIndex(Integer index)
Sets the sorted position of this property when it is grouped together
with other properties of the same type.
|
void |
setLanguage(String language)
Sets the language that the property value is written in.
|
void |
setLevel(InterestLevel level)
Sets the level of the person's interest.
|
void |
setPref(Integer pref)
Sets this property's preference value.
|
void |
setType(String type)
Sets the TYPE parameter.
|
_validate, equals, getValue, hashCode, setValue, toStringValues
addParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, isSupportedBy, removeParameter, setGroup, setParameter, setParameters, toString, validate
public Interest(String interest)
interest
- the hobby (e.g. "wind surfing")public InterestLevel getLevel()
VCardParameters.getLevel()
public void setLevel(InterestLevel level)
level
- the level (e.g. "low") or null to removeVCardParameters.setLevel(java.lang.String)
public Integer getIndex()
VCardProperty
Gets the sorted position of this property when it is grouped together with other properties of the same type. Properties with low index values are put at the beginning of the sorted list. Properties with high index values are put at the end of the list.
Supported versions: 4.0
public void setIndex(Integer index)
VCardProperty
Sets the sorted position of this property when it is grouped together with other properties of the same type. Properties with low index values are put at the beginning of the sorted list. Properties with high index values are put at the end of the list.
Supported versions: 4.0
index
- the index or null to removepublic String getType()
public void setType(String type)
type
- the TYPE value (this should be either "work" or "home") or
null to removepublic String getLanguage()
VCardProperty
public void setLanguage(String language)
VCardProperty
language
- the language or null to removepublic Integer getPref()
VCardProperty
Gets this property's preference value. The lower this number is, the more "preferred" the property instance is compared with other properties of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
In the vCard below, the Address
on the second row is the most
preferred because it has the lowest PREF value.
ADR;TYPE=work;PREF=2:;;1600 Amphitheatre Parkway;Mountain View;CA;94043 ADR;TYPE=work;PREF=1:;;One Microsoft Way;Redmond;WA;98052 ADR;TYPE=home:;;123 Maple St;Hometown;KS;12345
Supported versions: 4.0
public void setPref(Integer pref)
VCardProperty
Sets this property's preference value. The lower this number is, the more "preferred" the property instance is compared with other properties of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
In the vCard below, the Address
on the second row is the most
preferred because it has the lowest PREF value.
ADR;TYPE=work;PREF=2:;;1600 Amphitheatre Parkway;Mountain View;CA;94043 ADR;TYPE=work;PREF=1:;;One Microsoft Way;Redmond;WA;98052 ADR;TYPE=home:;;123 Maple St;Hometown;KS;12345
Supported versions: 4.0
pref
- the preference value or null to removepublic 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)
public Interest copy()
VCardProperty
Creates a copy of this property object.
The default implementation of this method uses reflection to look for a copy constructor. Child classes SHOULD override this method to avoid the performance overhead involved in using reflection.
The child class's copy constructor, if present, MUST invoke the
VCardProperty.VCardProperty(VCardProperty)
super constructor to ensure that
the group name and parameters are also copied.
This method MUST be overridden by the child class if the child class does
not have a copy constructor. Otherwise, an
UnsupportedOperationException
will be thrown when an attempt is
made to copy the property (such as in the VCard
class's copy constructor
).
copy
in class VCardProperty
Copyright © 2012–2020 Michael Angstadt. All rights reserved.