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

net.fortuna.ical4j.model.ComponentContainer Maven / Gradle / Ivy

There is a newer version: 3.0.22
Show newest version
package net.fortuna.ical4j.model;

public interface ComponentContainer {

    ComponentList getComponents();

    default  ComponentList getComponents(final String name) {
        return getComponents().getComponents(name);
    }

    default  C getComponent(final String name) {
        return (C) getComponents().getComponent(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy