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

org.opentripplanner.client.validation.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 0.1.9
Show newest version
package org.opentripplanner.client.validation;

import java.util.Collection;
import java.util.Objects;

public class CollectionUtils {
  public static  Collection assertHasValue(Collection coll) {
    Objects.requireNonNull(coll);
    if (coll.isEmpty()) {
      throw new IllegalArgumentException("Collection has no elements.");
    }
    return coll;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy