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

net.fortuna.ical4j.util.TimeZoneCache Maven / Gradle / Ivy

There is a newer version: 3.0.22
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy