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

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

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

import java.time.ZoneOffset;

import jfxtras.icalendarfx.components.StandardTime;

/**
 * TZOFFSETFROM
 * Time Zone Offset From
 * RFC 5545, 3.8.3.3, page 104
 * 
 * This property specifies the offset that is in use prior to this time zone observance.
 * 
 * EXAMPLES:
 * TZOFFSETFROM:-0500
 * TZOFFSETFROM:+1345
 * 
 * @author David Bal
 * @see DaylightSavingsTime
 * @see StandardTime
 */
public class TimeZoneOffsetFrom extends PropertyBaseZoneOffset
{    
    public TimeZoneOffsetFrom(TimeZoneOffsetFrom source)
    {
        super(source);
    }
    
    public TimeZoneOffsetFrom(ZoneOffset value)
    {
        super(value);
    }
    
    public TimeZoneOffsetFrom()
    {
        super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy