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

org.sdmlib.models.modelsets.longList Maven / Gradle / Ivy

Go to download

SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.

There is a newer version: 2.3.2341
Show newest version
package org.sdmlib.models.modelsets;

import java.util.ArrayList;

public class longList extends ArrayList
{
   private static final long serialVersionUID = 1L;

   public long sum()
   {
      long result = 0;

      for (Long value : this)
      {
         result += value;
      }

      return result;
   }

   public long max()
   {
      long max = Long.MIN_VALUE;

      for (long x : this)
      {
         if (x > max)
         {
            max = x;
         }
      }

      return max;
   }

   public long min()
   {
      long min = Long.MAX_VALUE;

      for (long x : this)
      {
         if (x < min)
         {
            min = x;
         }
      }

      return min;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy