net.fortuna.ical4j.model.property
Class Version

java.lang.Object
  extended bynet.fortuna.ical4j.model.Content
      extended bynet.fortuna.ical4j.model.Property
          extended bynet.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

Field Summary
static Version VERSION_2_0
           
 
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
 
Constructor Summary
Version()
          Default constructor.
Version(ParameterList aList, String aValue)
           
Version(ParameterList aList, String aVersion1, String aVersion2)
           
Version(String minVersion, String maxVersion)
           
 
Method Summary
 String getMaxVersion()
           
 String getMinVersion()
           
 String getValue()
           
 void setMaxVersion(String maxVersion)
           
 void setMinVersion(String minVersion)
           
 void setValue(String aValue)
          Sets the current value of the property.
 void validate()
          Perform validation on a property.
 
Methods inherited from class net.fortuna.ical4j.model.Property
equals, getName, getParameter, getParameters, getParameters, hashCode, isCalendarProperty, isComponentProperty, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

VERSION_2_0

public static final Version VERSION_2_0
Constructor Detail

Version

public Version()
Default constructor.


Version

public Version(ParameterList aList,
               String aValue)
Parameters:
aList - a list of parameters for this component
aValue - a value string for this component

Version

public Version(String minVersion,
               String maxVersion)
Parameters:
minVersion - a string representation of the minimum version
maxVersion - a string representation of the maximum version

Version

public Version(ParameterList aList,
               String aVersion1,
               String aVersion2)
Parameters:
aList - a list of parameters for this component
aVersion1 - a string representation of the minimum version
aVersion2 - a string representation of the maximum version
Method Detail

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