org.mnode.ical4j.json.jscalendar.LocationBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-json Show documentation
Show all versions of ical4j-json Show documentation
Custom marshalling between iCal4j objects and JSON formats
The newest version!
package org.mnode.ical4j.json.jscalendar;
import net.fortuna.ical4j.model.LocationType;
import java.net.URL;
import java.time.ZoneId;
import java.util.Map;
public class LocationBuilder {
private String name;
private String description;
private LocationType locationType;
private String relativeTo; // start/end
private ZoneId timeZone;
private String coordinates;
private Map links;
}