I M P S

I

IntegerBag - Class in <Unnamed>
Objects of the class IntegerBag are simple representations of a set of integers supporting some basic mathematical operations (min, max, sum, and product).
IntegerBag(Integer[]) - Constructor for class IntegerBag
Creates a new IntegerBag instance having the (non-null) integers in the given array in the bag

M

max() - Method in class IntegerBag
Calculate the largest number in this bag according to Integer.compareTo
min() - Method in class IntegerBag
Calculate the smallest number in this bag according to Integer.compareTo

P

product() - Method in class IntegerBag
Calculate the product of the numbers in this bag.

S

size() - Method in class IntegerBag
Number of integers in this bag.
sum() - Method in class IntegerBag
Calculate the sum of the numbers in this bag.

I M P S