![JAR search and dependency download from the Maven repository](/logo.png)
net.fortuna.ical4j.vcard.GeographicalPropertyAccessor Maven / Gradle / Ivy
package net.fortuna.ical4j.vcard;
import net.fortuna.ical4j.model.PropertyContainer;
import net.fortuna.ical4j.vcard.property.Geo;
import net.fortuna.ical4j.vcard.property.Tz;
import java.util.List;
public interface GeographicalPropertyAccessor extends PropertyContainer {
default List getTzs() {
return getProperties(PropertyName.TZ.toString());
}
default List getGeos() {
return getProperties(PropertyName.GEO.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy