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

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

There is a newer version: 2.0.0
Show newest version
package net.fortuna.ical4j.extensions.model.link;

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 previous in the series is the link target.
 * 

* See also Link Relations */ public class Prev extends Link { public Prev(URI uri) { super(uri); add(new LinkRel(LinkRelationType.prev)); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy