]> git.mxchange.org Git - jcustomer-core.git/blob - src/org/mxchange/jshopcore/model/basket/Basket.java
Continued:
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / basket / Basket.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jshopcore.model.basket;
18
19 import java.io.Serializable;
20 import java.util.List;
21 import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
22
23 /**
24  * An interface for baskets
25  *
26  * @author Roland Haeder<roland@mxchange.org>
27  * @param <T> Any addable basket items
28  */
29 public interface Basket<T extends AddableBasketItem> extends Serializable {
30
31         /**
32          * Adds given item instance to this basket
33          * 
34          * @param item Item instance to add
35          * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException If the item instance has already been added
36          */
37         public void addItem (final T item) throws BasketItemAlreadyAddedException;
38
39         /**
40          * Clears the basket instance
41          */
42         public void clear ();
43
44         /**
45          * Checks whether the given item has already been added by checking the
46          * item's id.
47          *
48          * @param item Item instance to check
49          * @return Whether the given item has been found
50          */
51         public boolean isAdded (final T item);
52
53         /**
54          * Checks if the basket is empty
55          *
56          * @return Whether the basket is empty
57          */
58         public boolean isEmpty ();
59
60         /**
61          * Some "getter" for all entries in this basket
62          *
63          * @return Map on all basket items
64          */
65         public List<T> getAll ();
66
67         /**
68          * Getter for last entry
69          *
70          * @return Last added item in basket
71          */
72         public T getLast ();
73
74         /**
75          * Getter for last num rows
76          * 
77          * @return Last num rows
78          */
79         public int getLastNumRows ();
80 }