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

net.fortuna.ical4j.vcard.OrganizationalPropertyAccessor Maven / Gradle / Ivy

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<Role> getRoles() {
        return getProperties(PropertyName.ROLE.toString());
    }

    default List<Logo> getLogos() {
        return getProperties(PropertyName.LOGO.toString());
    }

    default List<Org> getOrgs() {
        return getProperties(PropertyName.ORG.toString());
    }

    default List<Member> getMembers() {
        return getProperties(PropertyName.MEMBER.toString());
    }

    default List<Related> getRelated() {
        return getProperties(PropertyName.RELATED.toString());
    }
}
</code></pre>    <br/>
    <br/>
<div class='clear'></div>
</main>
</div>
<br/><br/>
    <div class="align-center">© 2015 - 2025 <a href="/legal-notice.php">Weber Informatics LLC</a> | <a href="/data-protection.php">Privacy Policy</a></div>
<br/><br/><br/><br/><br/><br/>
</body>
</html>