net.fortuna.ical4j.vcard.OrganizationalPropertyAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-vcard Show documentation
Show all versions of ical4j-vcard Show documentation
Support for the vCard specification
The newest version!
package net.fortuna.ical4j.vcard;
import net.fortuna.ical4j.model.PropertyContainer;
import net.fortuna.ical4j.vcard.property.*;
import java.util.List;
public interface OrganizationalPropertyAccessor extends PropertyContainer {
default List getTitles() {
return getProperties(PropertyName.TITLE.toString());
}
default List getRoles() {
return getProperties(PropertyName.ROLE.toString());
}
default List getLogos() {
return getProperties(PropertyName.LOGO.toString());
}
default List getOrgs() {
return getProperties(PropertyName.ORG.toString());
}
default List getMembers() {
return getProperties(PropertyName.MEMBER.toString());
}
default List getRelated() {
return getProperties(PropertyName.RELATED.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy