Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 334 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 334 Bytes

WHAT EXACTLY ARE ENUMERATIONS AKA ENUM

Enumerations allow us to have a list of possible values for a variable. Similar to a Switch.

public enum currentSubs{"Bronze", "Silver", "Gold", "Platinum"};

As you can see for the variable currentSubs I can have the value set to Bronze OR Silver OR Gold OR Platinum