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

net.fortuna.ical4j.extensions.model.link.Next Maven / Gradle / Ivy

The newest version!
package net.fortuna.ical4j.extensions.model.link;

import net.fortuna.ical4j.model.Component;
import net.fortuna.ical4j.model.LinkRelationType;
import net.fortuna.ical4j.model.parameter.LinkRel;
import net.fortuna.ical4j.model.property.Link;

import java.net.URI;

/**
 * Indicates that the link's context is a part of a series, and that the next in the series is the link target.
 * 

* See also Link Relations */ public class Next extends Link { public Next(URI uri) { super(uri); add(new LinkRel(LinkRelationType.next)); } public Next(Component component) { super(component); add(new LinkRel(LinkRelationType.next)); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy