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

jfxtras.icalendarfx.parameters.GroupMembership Maven / Gradle / Ivy

The newest version!
package jfxtras.icalendarfx.parameters;

import java.net.URI;
import java.util.List;

import jfxtras.icalendarfx.parameters.GroupMembership;
import jfxtras.icalendarfx.parameters.VParameterBase;
import jfxtras.icalendarfx.utilities.StringConverter;
import jfxtras.icalendarfx.utilities.StringConverters;

/**
 * MEMBER
 * Group or List Membership
 * RFC 5545, 3.2.11, page 21
 * 
 * To specify the group or list membership of the calendar user specified by the property.
 * 
 * Example:
 * ATTENDEE;MEMBER="mailto:[email protected]","mailto:pr
 *  [email protected]":mailto:[email protected]
 * 
 * @author David Bal
 *
 */
public class GroupMembership extends VParameterBase>
{
	private static final StringConverter< List> CONVERTER = StringConverters.uriListConverter();

    public GroupMembership(List values)
    {
        super(values, CONVERTER);
    }
    
    public GroupMembership()
    {
        super(CONVERTER);
    }
    
    public GroupMembership(GroupMembership source)
    {
        super(source, CONVERTER);
    }
    
    public static GroupMembership parse(String content)
    {
    	return GroupMembership.parse(new GroupMembership(), content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy