com.powsybl.contingency.contingency.list.ListOfContingencyLists Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-contingency-api Show documentation
Show all versions of powsybl-contingency-api Show documentation
An API to describe and trigger contingencies
/**
* Copyright (c) 2022, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
* SPDX-License-Identifier: MPL-2.0
*/
package com.powsybl.contingency.contingency.list;
import com.google.common.collect.ImmutableList;
import com.powsybl.contingency.Contingency;
import com.powsybl.iidm.network.Network;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
/**
* @author Etienne Lesot {@literal }
*/
public class ListOfContingencyLists implements ContingencyList {
public static final String TYPE = "list";
private final String name;
private final List contingencyLists;
public ListOfContingencyLists(String name, List contingencyLists) {
this.name = Objects.requireNonNull(name);
this.contingencyLists = ImmutableList.copyOf(contingencyLists);
}
@Override
public String getName() {
return name;
}
@Override
public String getType() {
return TYPE;
}
@Override
public List getContingencies(Network network) {
return contingencyLists.stream()
.flatMap(contingencyList -> contingencyList.getContingencies(network).stream())
.collect(Collectors.toList());
}
public List getContingencyLists() {
return ImmutableList.copyOf(contingencyLists);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy