MCPcopy Create free account
hub / github.com/Anchals24/Low-Level-Design / Coin

Enum Coin

StateDesignPattern/Coin.java:3–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package BehaviouralDesignPatterns.StateDesignPattern;
2
3public enum Coin {
4
5 PENNY(1),
6 NICKEL(5),
7 DIME(10),
8 QUARTER(25);
9
10 public int value;
11
12 Coin(int value) {
13 this.value = value;
14 }
15}
16

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected