/* * Name : Genre * * Description : The enum is used by songs as an attribute. * * Version : 1.0 * * Date : 28/12/2020 * * Copyright : Aimeric ADJUTOR */ /** * The Genre enum is used by songs as an attribute. * * @version 1.0 * * @see Song * @author Aimeric ADJUTOR */ public enum Genre { JAZZ, CLASSICAL, HIPHOP, ROCK, POP, RAP }