Skip to content

Instantly share code, notes, and snippets.

View justADeni's full-sized avatar

Deni justADeni

  • Prague
  • 03:38 (UTC +02:00)
View GitHub Profile
@justADeni
justADeni / Java Periodic table of elements.java
Last active March 29, 2023 15:25 — forked from felixdivo/Java Periodic table of elements.java
This Java enum (=singleton) provides information about the elements of the periodic table (PTE). (Symbol, full name, atomic number, average atomic mass and electron negativity by Pauling) It can be searched by symbol and atomic number.
package divo.felix.chem.pte;
import java.util.HashMap;
import java.util.Map;
/**
* Holds information of the periodic table of elements.
*
* @author Felix Divo
*/