-
Notifications
You must be signed in to change notification settings - Fork 0
/
Enum.java
44 lines (38 loc) · 838 Bytes
/
Enum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Manipulando enum
public class Main {
enum Level {
LOW,
MEDIUM,
HIGH
}
public static void main(String[] args) {
Level myVar = Level.MEDIUM;
System.out.println(myVar);
}
}
// enum em um switch
enum Nivel {
BAIXO,
MÉDIO,
ALTO
}
class sec {
public static void main(String[] args) {
Nivel newVar = Nivel.MÉDIO;
switch(newVar) {
case BAIXO:
System.out.println("Nível Baixo");
break;
case MÉDIO:
System.out.println("Nível Médio");
break;
case ALTO:
System.out.println("Nível Alto");
break;
}
// enum dentro de um loop
for (Nivel Var : Nivel.values()) {
System.out.println(Var);
}
}
}