java enum
public class DaysOfTheWeek {
public enum Days {m, t, w, r, f, sat, s};
public static void main(String[] args) {
Days d = Days.t;
System.out.println(d);
//the output would be t
}
}
java enum
public class DaysOfTheWeek {
public enum Days {m, t, w, r, f, sat, s};
public static void main(String[] args) {
Days d = Days.t;
System.out.println(d);
//the output would be t
}
}
enumeration java
public enum Feu {
VERT(0), ORANGE(1), ROUGE(2);
private int value;
private Feu( int value ) {
this.value = value;
}
public int toInt() {
return value;
}
public static Feu fromInt( int value ) {
switch( value ) {
case 0: return VERT;
case 1: return ORANGE;
default: return ROUGE;
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us