//initializes the periodic table //by parsing the element data private static void Initialize() { List<Element> elements = ChemistryCSVParser.ParseString(ELEMENT_DATA); tableInstance = new PeriodicTable(elements); }