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

org.colllib.util.ellibs.CollectionLib Maven / Gradle / Ivy

package org.colllib.util.ellibs;

import java.util.Collection;

/**
 * This file is part of CollLib released under the terms of the LGPL V3.0.
 * See the file licenses/lgpl-3.0.txt for details.
 * 
 * @author marc.jackisch
 */
public class CollectionLib {
   private CollectionLib() {}
   
   public static int size(Collection c) {
      return c == null ? -1 : c.size();
   }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy