We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1120db3 + 55e6a64 commit ef58115Copy full SHA for ef58115
3 files changed
src/main/java/demo/codeexample/enums/Category.java
@@ -0,0 +1,6 @@
1
+package demo.codeexample.enums;
2
+
3
+public enum Category {
4
+ FILM,
5
+ SERIES;
6
+}
src/main/java/demo/codeexample/enums/Genre.java
@@ -0,0 +1,12 @@
+public enum Genre {
+ ACTION,
+ COMEDY,
+ CRIME,
7
+ DRAMA,
8
+ FANTASY,
9
+ HORROR,
10
+ ROMANCE,
11
+ SCI_FI
12
src/main/java/demo/codeexample/enums/Role.java
@@ -0,0 +1,8 @@
+public enum Role {
+ PRODUCER,
+ DIRECTOR,
+ RECRUITER,
+ EDITOR
0 commit comments