net.fortuna.ical4j.model.property
Class Version
java.lang.Object
net.fortuna.ical4j.model.Content
net.fortuna.ical4j.model.Property
net.fortuna.ical4j.model.property.Version
- All Implemented Interfaces:
- Serializable
- public class Version
- extends Property
Defines a VERSION iCalendar property.
When creating a new calendar you should always add a version property with value "2.0".
There is actually a constant defined in the Version class for this. e.g:
Calendar calendar = new Calendar();
calendar.getProperties().add(Version.VERSION_2_0);
- Author:
- Ben Fortuna
- See Also:
- Serialized Form
Fields inherited from class net.fortuna.ical4j.model.Property |
ACTION, ATTACH, ATTENDEE, CALSCALE, CATEGORIES, CLASS, COMMENT, COMPLETED, CONTACT, CREATED, DESCRIPTION, DTEND, DTSTAMP, DTSTART, DUE, DURATION, EXDATE, EXPERIMENTAL_PREFIX, EXRULE, FREEBUSY, GEO, LAST_MODIFIED, LOCATION, METHOD, ORGANIZER, PERCENT_COMPLETE, PRIORITY, PRODID, RDATE, RECURRENCE_ID, RELATED_TO, REPEAT, REQUEST_STATUS, RESOURCES, RRULE, SEQUENCE, STATUS, SUMMARY, TRANSP, TRIGGER, TZID, TZNAME, TZOFFSETFROM, TZOFFSETTO, TZURL, UID, URL, VERSION |
VERSION_2_0
public static final Version VERSION_2_0
Version
public Version()
- Default constructor.
Version
public Version(ParameterList aList,
String aValue)
- Parameters:
aList
- a list of parameters for this componentaValue
- a value string for this component
Version
public Version(String minVersion,
String maxVersion)
- Parameters:
minVersion
- a string representation of the minimum versionmaxVersion
- a string representation of the maximum version
Version
public Version(ParameterList aList,
String aVersion1,
String aVersion2)
- Parameters:
aList
- a list of parameters for this componentaVersion1
- a string representation of the minimum versionaVersion2
- a string representation of the maximum version
getMaxVersion
public final String getMaxVersion()
- Returns:
- Returns the maxVersion.
getMinVersion
public final String getMinVersion()
- Returns:
- Returns the minVersion.
setValue
public void setValue(String aValue)
- Description copied from class:
Property
- Sets the current value of the property.
- Specified by:
setValue
in class Property
- Parameters:
aValue
- a string representation of the property
value
getValue
public final String getValue()
- Specified by:
getValue
in class Property
- Returns:
- Returns the value.
setMaxVersion
public void setMaxVersion(String maxVersion)
- Parameters:
maxVersion
- The maxVersion to set.
setMinVersion
public void setMinVersion(String minVersion)
- Parameters:
minVersion
- The minVersion to set.
validate
public final void validate()
throws ValidationException
- Description copied from class:
Property
- Perform validation on a property.
- Specified by:
validate
in class Property
- Throws:
ValidationException
- where the property is not in a valid state