org.jgrapht.util.SupplierUtil Maven / Gradle / Ivy
/*
* (C) Copyright 2018-2021, by Dimitrios Michail and Contributors.
*
* JGraphT : a free Java graph-theory library
*
* See the CONTRIBUTORS.md file distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the
* GNU Lesser General Public License v2.1 or later
* which is available at
* http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html.
*
* SPDX-License-Identifier: EPL-2.0 OR LGPL-2.1-or-later
*/
package org.jgrapht.util;
import org.jgrapht.graph.*;
import java.io.*;
import java.lang.reflect.*;
import java.util.*;
import java.util.function.*;
/**
* Helper class for suppliers.
*
* @author Dimitrios Michail
*/
public class SupplierUtil
{
/**
* Supplier for {@link DefaultEdge}.
*/
@SuppressWarnings("unchecked")
public static final Supplier DEFAULT_EDGE_SUPPLIER =
(Supplier & Serializable) DefaultEdge::new;
/**
* Supplier for {@link DefaultWeightedEdge}.
*/
@SuppressWarnings("unchecked")
public static final Supplier DEFAULT_WEIGHTED_EDGE_SUPPLIER =
(Supplier & Serializable) DefaultWeightedEdge::new;
/**
* Supplier for {@link Object}.
*/
@SuppressWarnings("unchecked")
public static final Supplier