diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-06-06 13:32:56 +0200 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-06-06 13:32:56 +0200 |
commit | 65a49c3154822aa808ced07301487162a290fda7 (patch) | |
tree | d65603ed917cf7e4f3c7720e8c474615d3931ed2 /src/musichub/business/Category.java |
Initial jMusicHubProject
Diffstat (limited to 'src/musichub/business/Category.java')
-rw-r--r-- | src/musichub/business/Category.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/musichub/business/Category.java b/src/musichub/business/Category.java new file mode 100644 index 0000000..f676e51 --- /dev/null +++ b/src/musichub/business/Category.java @@ -0,0 +1,14 @@ +package musichub.business; + +public enum Category { + YOUTH("youth"), NOVEL("novel"), THEATER("theater"), DOCUMENTARY("documentary"), SPEECH("speech"); + private final String category; + + Category(String category) { + this.category = category; + } + + public String getCategory() { + return category; + } +}
\ No newline at end of file |