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

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

package net.fortuna.ical4j.vcard;

import net.fortuna.ical4j.util.Strings;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.stream.Collectors;

/**
 * An immutable list of entities with functional mutator support.
 */
public class EntityList {

    private final List entities;

    public EntityList() {
        this(new ArrayList<>());
    }

    public EntityList(List entities) {
        this.entities = entities;
    }

    public EntityList add(Entity entity) {
        List copy = new ArrayList<>(entities);
        copy.add(entity);
        return new EntityList(copy);
    }

    public EntityList addAll(Collection content) {
        List copy = new ArrayList<>(entities);
        copy.addAll(content);
        return new EntityList(copy);
    }

    public EntityList remove(Entity entity) {
        List copy = new ArrayList<>(entities);
        copy.remove(entity);
        return new EntityList(copy);
    }

    public List getAll() {
        return entities;
    }

    @Override
    public String toString() {
        return entities.stream().map(Entity::toString).collect(Collectors.joining(Strings.LINE_SEPARATOR));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy