-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduct.java
121 lines (97 loc) · 2.65 KB
/
Product.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package pcstore.instance;
import java.io.Serializable;
import static pcstore.MainClass._STORE_DB;
/**
*
* @author Panos
*/
public class Product implements Serializable {
public enum ProductCategory {
COMPUTER, PRINTER, COMPUTER_PART, PRINTER_PART;
/**
* Returns the category type by code value.
*
* @param value the value of the category 1-4
* @return the category of the product by value given
*/
public static ProductCategory getProductCategoryByValue(int value) {
switch (value) {
case 1:
return COMPUTER;
case 2:
return PRINTER;
case 3:
return COMPUTER_PART;
case 4:
return PRINTER_PART;
}
return null;
}
};
/* final static variable for the sufficient
threshold of a product stock */
public static final int STOCK_THRESHOLD = 5;
/* the unique id */
private int id;
/* the product name */
private String name;
/* the product category */
private ProductCategory category;
/* the product price */
private double price;
/* the ramaining amount in storage */
private int stock;
public Product(String name, ProductCategory category, double price, int stock) {
if (_STORE_DB.getProducts() == null) {
this.id = 1;
} else {
this.id = _STORE_DB.getProducts().size() + 1;
}
this.name = name;
this.category = category;
this.price = price;
this.stock = stock;
}
/* ----- all getters and setters below this ----- */
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ProductCategory getCategory() {
return category;
}
public void setCategory(ProductCategory category) {
this.category = category;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getStock() {
return stock;
}
public void setStock(int stock) {
this.stock = stock;
}
/**
*
* @return true if there is a sufficient amount in storage
*/
public boolean isStockSufficient() {
return getStock() > STOCK_THRESHOLD;
}
@Override
public String toString() {
return "Product{" + "name=" + name + ", price=" + price + '}';
}
}