blob: 1083df695e14fd3ac703c9256d12daaa0993ab37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* 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
}
|