]> git.mxchange.org Git - jcustomer-core.git/blob - src/org/mxchange/jshopcore/model/basket/Basket.java
d2e9883541581c2112aeceef67442868a1ab3954
[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  * <p>
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          * <p>
34          * @param item Item instance to add
35          * <p>
36          * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException
37          * If the item instance has already been added
38          */
39         public void addItem (final T item) throws BasketItemAlreadyAddedException;
40
41         /**
42          * Clears the basket instance
43          */
44         public void clear ();
45
46         /**
47          * Some "getter" for all entries in this basket
48          * <p>
49          * @return Map on all basket items
50          */
51         public List<T> getAll ();
52
53         /**
54          * Getter for last entry
55          * <p>
56          * @return Last added item in basket
57          */
58         public T getLast ();
59
60         /**
61          * Getter for last num rows
62          * <p>
63          * @return Last num rows
64          */
65         public int getLastNumRows ();
66
67         /**
68          * Checks whether the given item has already been added by checking the
69          * item's id.
70          * <p>
71          * @param item Item instance to check
72          * <p>
73          * @return Whether the given item has been found
74          */
75         public boolean isAdded (final T item);
76
77         /**
78          * Checks if the basket is empty
79          * <p>
80          * @return Whether the basket is empty
81          */
82         public boolean isEmpty ();
83 }