net.fortuna.ical4j.util.TimeZoneCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j Show documentation
Show all versions of ical4j Show documentation
A Java library for reading and writing iCalendar (*.ics) files
package net.fortuna.ical4j.util;
import net.fortuna.ical4j.model.component.VTimeZone;
public interface TimeZoneCache {
VTimeZone getTimezone(String id);
boolean putIfAbsent(String id, VTimeZone timeZone);
boolean containsId(String id);
void clear();
}