All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jfxtras.icalendarfx.properties.component.timezone.TimeZoneName Maven / Gradle / Ivy

The newest version!
package jfxtras.icalendarfx.properties.component.timezone;

import jfxtras.icalendarfx.components.StandardTime;
import jfxtras.icalendarfx.properties.PropBaseLanguage;

/**
 * TZNAME
 * Time Zone Name
 * RFC 5545, 3.8.3.2, page 103
 * 
 * This property specifies the customary designation for a time zone description.
 * 
 * EXAMPLES:
 * TZNAME:EST
 * TZNAME;LANGUAGE=fr-CA:HN
 * 
 * @author David Bal
 * @see DaylightSavingsTime
 * @see StandardTime
 */
public class TimeZoneName extends PropBaseLanguage
{
    public TimeZoneName(TimeZoneName source)
    {
        super(source);
    }

    public TimeZoneName()
    {
        super();
    }
    
    public static TimeZoneName parse(String content)
    {
    	return TimeZoneName.parse(new TimeZoneName(), content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy