Consider I have a HashMap like the below example:
private static Map<String, Double, Integer, Integer> Items = new HashMap<>();
// item name Price CurrentStock, Minimum Stock
Items.put("Chocolate", 1.35, 13, 11 );
How would I make it check if the 13 is the 11 or below~? Is this possible with HashMaps, if not what should I do?